/********************************************************/
// 別ウィンドウで開く
/********************************************************/
function WINop(theURL) {
  window.open(theURL,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=800,height=400');
}

/********************************************************/
// 別ウィンドウで開く２
/********************************************************/
function WINopen(theURL,argW,argH) {
	var features="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
	features+=", width="+argW;
	features+=", height="+argH;
	window.open(theURL,'',features);
}

/********************************************************/
// 指定した画像に変える
/********************************************************/
function changeIMG(img_url,chg_name) {
	document.images[chg_name].src=img_url;
}
