function closeWin(){
	window.close();
}
function printWin(){
	window.print();
}


//現地案内図
function mapWin(url){
	window.open(url,'','width=660,height=750,resizable=yes,scrollbars=yes');
}

//間取り
function planWin(url){
	window.open(url,'','width=660,height=750,resizable=yes,scrollbars=yes');
}
//ギャラリー
function galleryWin(url){
//window.open(url,'gallery','fullscreen=yes');
	//galWin = window.open(url, 'gallery', 'resizable, scrollbars,width=' + window.screen.width + ', height=' + window.screen.height);
	//galWin.moveTo(0,0);
	//galWin.focus();
	var winW=window.screen.width;
	var winH=window.screen.height;
	var winX=0;
	var winY=0;
	Win1=window.open(url,"MRWin","screenX="+ winX+",screenY="+ winY+",left="+ winX+",top="+ winY+",toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+winW+",height="+winH);
	//Win1.focus();
}
