//ポップアップメニュー用ファンクション
function openwindow(fileNo,yoko,tate)
{
	madoName = "POPUP";
	fileName = fileNo;
	POPUP=window.open(fileName,madoName,"width="+yoko+",height="+tate+",resizable=no,scrollbars=no,menubar=no,directories=no,status=no,location=no,toolbar=no");
	if(navigator.appName == "Netscape"){
	POPUP.focus();
	}
	void(0);
}


function openwindow2(fileNo,yoko,tate)
{
	madoName = "POPUP2";
	fileName = fileNo;
	POPUP=window.open(fileName,madoName,"width="+yoko+",height="+tate+",resizable=yes,scrollbars=yes,menubar=no,directories=no,status=no,location=no,toolbar=no");
	if(navigator.appName == "Netscape"){
	POPUP.focus();
	}
	void(0);
}


//画像差し替え用ファンクション
function imgChng(imgName,ID) {
	document.images[imgName].src = eval(ID + ".src");
}
