<!--


//--------------------------------------------------
// POPUP WIN OPEN
//--------------------------------------------------
function pop2URL(wk1,WW,HH,WN){
	var PopWidth  = "";
	var PopHeight = "";
	var PopWinName= "pop";
	if(WW){ PopWidth  = ",width=" + WW; }
	if(HH){ PopHeight = ",height=" + HH; }
	if(WN){ PopWinName = WN; }
	var PopDetail = "scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0" + PopWidth + PopHeight;
	PopWin = window.open(wk1,PopWinName,PopDetail);
	PopWin.focus();
}

//--------------------------------------------------
// BROWSER HEIGHT CHECK
//--------------------------------------------------
function getBrowserHeight(){
	if (window.innerHeight){
		return window.innerHeight; }
	else if (document.documentElement && document.documentElement.clientHeight != 0){
		return document.documentElement.clientHeight; }
	else if (document.body){return document.body.clientHeight;}
		return 0;
}

function callFlashFunction(){
	thisMovie("flash").setJSFunction("SYORISYUURYOU");
}

function thisMovie(movieName){
	if(navigator.appName.indexOf("Microsoft") != -1){
		return window[movieName]
	}else{
		return document[movieName]
	}
}


//-->

