// JavaScript Document
function FullPage() {
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth,screen.availHeight);
}

var popUpWin=0;
function popUpWindow(URLStr, width, height)
{
 var left = (screen.availWidth-width)/2;
 var top = (screen.availHeight-height)/2;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function controlloFrame(){
	if(parent['flashframe'] == undefined){
		document.location = "<?=WEB_HOST.WEB_ROOT.$urlstr?>"; 
	}
}
