//openWindow('URL','ウィンドウネーム','ツールバー','幅','高さ')
function openWindow(url, name, toolbar, width, height)
{
	var prop = "toolbar=" + toolbar + ",location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=1,width=" + width + ",height=" + height;
	var newWindow = window.open(url, name, prop);
	newWindow.focus();
}

function cngimg(n){
	var imgsrc = n.src;
	if(imgsrc.indexOf("-in")>0) {;
	}else{

		if(imgsrc.indexOf("jpg") <= 0){
			extension=".gif";
		}
		else{
			extension=".jpg";
		}
	
		if(imgsrc.indexOf("-on") <= 0){
			n.src=imgsrc.substring(0,imgsrc.length-4) +"-on"+extension;
		}
		else{
			n.src=imgsrc.substring(0,imgsrc.length-7) +extension;
		}
	}
}
//共通JSの読み込み
document.write('<script type="text/javascript" src="/js/jquery/jquery-1.3.2.min.js"></script>');
document.write('<script type="text/javascript" src="/js/jquery/yuga.js" charset="utf-8"></script>');
document.write('<script type="text/javascript" src="/js/log.js"></script>');