// open_new_window.js
// intro.swf calls OpenFScreen( url );
	
function OpenFScreen(url){
var platform;
var browser;
var version;
version = parseInt(navigator.appVersion);
if(navigator.userAgent.indexOf('Win') == -1) 
 { platform = 'Macintosh'; }
else
 { platform = 'Windows'; }
if(navigator.appName.indexOf('Netscape') == -1)
 { browser = 'IE'; } 
else
 { browser = 'Netscape'; }
var aw = screen.availWidth;
var ah = screen.availHeight;
if (browser == 'Netscape')
 {
 aw = aw-12;
 ah = ah-30;
 }
if (browser == 'IE') 
 {
 // open in a default window with toolbar, menubar, scrollbar, and make it resizable
  //window.open( url, "arctic", "toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes" ); 
  window.open( "home.html", "arctic", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes" ); 
 // open in a full screen window with no-toolbar, no-menubar, no-scrollbar, and not resizable  
  //var fenetre=window.open(url,"arctic","fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top=0,left=0");
  //fenetre.resizeTo(aw,ah); // resize
 }
else
 {
 // open in a default window with toolbar, menubar, scrollbar, and make it resizable
  //window.open( url, "arctic", "toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes" ); 
  window.open( "home.html", "arctic", "toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes" ); 
 // open in a full screen window with no-toolbar, no-menubar, no-scrollbar, and not resizable  
  //window.open(url,"arctic","height="+(ah)+",width="+(aw)+",fullscreen=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top=0,left=0");
 }
}

