// ==== Pop Up functions====
// 05.12.06
//
//====================================================


//=====ポスターポップアップ=====
var strUrl;


var displayWidth  = screen.width;
var displayHeight = screen.height;

function openWindow(Url) {

	strUrl = Url;
//	var winWidth  = displayWidth/2;
//	var winHeight = displayHeight/2; 
	var winWidth  = 500;
	var winHeight = 650; 
	var Option = "toolbar=no, location=no, menubar=no, scrollbars=yes,resizable=yes ";

	Option += ", width=" + winWidth + "px, height=" + winHeight + "px";
	window.open("../preview.html", "win1" , Option);
}


//=====ギャラリー用ポップアップ=====

var config;

function popUp(url,height){
	config = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=730,height='+height+"'";
	window.open(url,'',config);
}



//=====FWとは？=====

function popAbout(){

	window.open('about/index.html','','toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=no,width=570,height=290');
	
	}