// JavaScript Document
function FSOpen(url,name,w,h){
    var l=(screen.width-w)
    var t=(screen.height-h)
    var w=window.open(url,name,"menubar=no,scrollbars=no,status=no,location=no,resizable=no,left="+l+",top="+t+",width="+w+",height="+h);
    
    w.focus();
    if(navigator.platform.indexOf("Mac")!=-1){
    w.moveTo(0,0)
    w.resizeTo(screen.availWidth,screen.availHeight);
    }
    return w;
}

function fullScreens(){
	var l=screen.width;
    var t=screen.height;
		
	tmp=navigator.userAgent;
	if(tmp.indexOf("MSIE") != -1){
   		//alert("IEだよ");
		var ww=window.open("flash.html", '_self');
	}
	else{
	   	//alert("IE以外だよ！！！！！");
   		FSOpen("flash.html","Win",l,t);
	}
	
	
	
}

