// JavaScript Document

var winW = 0, winH = 0;

if (parseInt(navigator.appVersion)>3)
 {
 if (navigator.appName=="Netscape")
 
  {
  winW = window.innerWidth-16;
  winH = window.innerHeight-16;
 }
 
 if (navigator.appName.indexOf("Microsoft")!=-1)
 
  {
  winW = document.body.offsetWidth;
  winH = document.body.offsetHeight;
 }
}
if (winW <= 1600)  {
  document.write('<link rel="stylesheet" type="text/css" href="1440.css">');
}
if (winW <= 1280)  {
  document.write('<link rel="stylesheet" type="text/css" href="1280-800.css">');
}
if (winW <= 1024) {
  document.write('<link rel="stylesheet" type="text/css" href="1024.css">');
}
if (winW <= 800) {
  document.write('<link rel="stylesheet" type="text/css" href="1024.css">');
}

