<!--
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="../css/1600.css">');
}
if (winW <= 1600)  {
  document.write('<link rel="stylesheet" type="text/css" href="../css/1600.css">');
}
if (winW <= 1280)  {
  document.write('<link rel="stylesheet" type="text/css" href="../css/1280.css">');
}
if (winW <= 1024) {
  document.write('<link rel="stylesheet" type="text/css" href="../css/1024.css">');
}
if (winW <= 800) {
  document.write('<link rel="stylesheet" type="text/css" href="../css/800.css">');
}
if (winW <= 640) {
  document.write('<link rel="stylesheet" type="text/css" href="../css/640.css">');
}

-->
