// 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;
    FSOpen("flash.html","Win",l,t)
}
function fullScreens2(){
    var l=screen.width;
    var t=screen.height;
    FSOpen("flash2.html","Win",l,t)
}
function fullScreens3(){
    var l=screen.width;
    var t=screen.height;
    FSOpen("flash3.html","Win",l,t)
}

if( navigator.userAgent.indexOf("Win",0) >= 0){
	document.writeln('<link rel="stylesheet" type="text/css" href="css/win.css">');
	}else{
	document.writeln('<link rel="stylesheet" type="text/css" href="css/mac.css">');
}
