// JavaScript Document
if ((screen.width>=1024) && (screen.height>=768)) {
document.write("<link rel='stylesheet' href='css/1024x768.css' type='text/css'>");
} 

else {
document.write("<link rel='stylesheet' href='css/800x600.css' type='text/css'>");
}

top.window.moveTo(0,0); 
if (document.all) 
   { top.window.resizeTo(screen.availWidth,screen.availHeight); } 
else if 
   (document.layers || document.getElementById) 
   { 
   if 
    (top.window.outerHeight < screen.availHeight || top.window.outerWidth < 
screen.availWidth)
     { top.window.outerHeight = top.screen.availHeight; 
       top.window.outerWidth = top.screen.availWidth; } 
   }

