function Win(purl){
var isMSIE = /*@cc_on!@*/false; 
	if (isMSIE){//IEだけモーダルダイアログ
		if (typeof document.body.style.maxHeight != "undefined") {
		// IE 7.0 以上 または Gecko などモダンブラウザー
		window.showModalDialog(purl,this,"dialogWidth=500px; dialogHeight=462px;dialogTop=0;");
		}
		else {
		// IE 6.0 以下
		window.showModalDialog(purl,this,"dialogWidth=523px; dialogHeight=514px;dialogTop=0;");
		}
	}
	else{//ＩＥ以外はポップアップ
		window.open(purl,'popname','width=515,height=462,screenX=0,screenY=0,left=0,top=0,scrollbars=no,location=no,menuber=no,status=no,directories=no');
	}
}



