//マウスアクション
var d = document;

function ImgSwap(path,name,sw,ext){
	d.images[name].src = path + "common/images/" + name + sw + ext;
}

//[path]にはcommonまでのパスを表記
//[name]は画像名・imgのname/id共通名称
//[sw]は上記以外の名称（_on）など

//html内での表記は
//<a href="リンク先URL" onmouseover="ImgSwap('','該当name','オンマウス画像の該当sw')" onmouseout="ImgSwap('','該当name','通常時画像の該当sw')"
//※「該当name」にはimgのname・idと同じものを表記




//ポップアップウィンドウ
//function openWin(file){
//	wins = window.open(file,"new","width=XXX,height=XXX,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
//	wins.focus();
//}

//「file」には開くサイト名をパスで明記	ex)XXXXX/popup.html
//html内では
//	<a href="#" onClick="openWin('開くhtmlのパス','','width=XXX,height=XXX')">XXXXX</a>
//		と明記