/*

サイト共通

*/

function popUp(theURL,winName) {
	
//	var myWidth= screen.width;
//	var myHeight= screen.height;
	
	var myWidth= 570;
	var myHeight= 700;
	
	var myWin = window.open(theURL,winName, 'status=0, toolbar=0, scrollbars=1,location=0,menubar=0,resizable=1, height='+myHeight+', width='+myWidth );
	
	myWin.focus();
}

function openISO(){
	
	var winName = "iso";
	var isoWin = window.open("./iso.html",winName, 'status=0, toolbar=0, scrollbars=0,location=0,menubar=0,resizable=1, height=653, width=700' );
	
	isoWin.focus();
}

function openMap( theURL ){
	
	var winName = "map";
	var mapWin = window.open(theURL,winName, 'status=0, toolbar=0, scrollbars=1,location=0,menubar=0,resizable=1, height=430, width=450' );
	
	mapWin.focus();
}
