/*アーケード価格表示用*/
function disp(url){
	window.open(url, "ゲーム価格", "width=450,height=650,scrollbars=no");
}

/*お問い合わせ画面表示用*/
function contact(url){
	window.open(url, "LOOPお問い合わせフォーム", "width=610,height=570,scrollbars=yes");
}

/*BENEメニュー表示用*/
function bene(url){
	window.open(url, "BENEメニュー", "width=750,height=570,scrollbars=yes");
}

/*その他表示用*/
function req(url){
	window.open(url, "お願い", "width=475,height=650,scrollbars=no");
}

/*時限表示*/
function limitedCheck(StartDate,EndDate){
	Today = new Date();
	theDate = Today.getDate();
	if(theDate >= StartDate && theDate <= EndDate){
	document.getElementById("hidden").style.display="inline";
	document.getElementById("sudden").style.display="none";
	}
	else{
	document.getElementById("hidden").style.display="none";
	document.getElementById("sudden").style.display="inline";
	}
}

/*画像プリロード*/
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
