// JavaScript Document

//ロールオーバー*********************************************

//.jpg
function rollOver_jpg(_obj){
	var newFile = _obj.src.substring(0,_obj.src.length-7);
	newFile = newFile+"_mo.jpg";
	_obj.src = newFile;
}

function rollOut_jpg(_obj){
	var newFile = _obj.src.substring(0,_obj.src.length-7);
	newFile = newFile+"_ob.jpg";
	_obj.src = newFile;
}

//.gif
function rollOver_gif(_obj){
	var newFile = _obj.src.substring(0,_obj.src.length-7);
	newFile = newFile+"_mo.gif";
	_obj.src = newFile;
}

function rollOut_gif(_obj){
	var newFile = _obj.src.substring(0,_obj.src.length-7);
	newFile = newFile+"_ob.gif";
	_obj.src = newFile;
}

//ウィンドウオープン*********************************************

function myOpWin(theURL) { //v2.0
  var fs = 'toolbar=no,'
	+'location=no,'
	+'status=no,'
	+'menubar=no,'
	+'scrollbars=yes,'
	+'resizable=yes,'
	+'width=530,'
	+'height=440'; 
	theWind = window.open(theURL,'Qt',fs);
	window.theWind.focus();
}


//ウィンドウクローズ*********************************************

function CloseWin(){
    window.close();
}

//フラッシュ読み込み*********************************************

function swftop(){
document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="840" height="240">');
document.write ('<param name="movie" value="./images/index.swf" />');
document.write ('<param name="quality" value="high" />');
document.write ('<embed src="./images/index.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="840" height="240"></embed>');
document.write ('</object>');
}