<!--
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="1600.css">');
}
if (winW <= 1280)  {
  document.write('<link rel="stylesheet" type="text/css" href="1280.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="800.css">');
}
if (winW <= 640) {
  document.write('<link rel="stylesheet" type="text/css" href="640.css">');
}
if ((winW <= 640) && (winH <= 480)) {
  document.write('<link rel="stylesheet" type="text/css" href="640b.css">');
}
if ((winW >= 641) || (winH >= 481)) {
  document.write('<link rel="stylesheet" type="text/css" href="800b.css">');
}
if ((winW >= 801) || (winH >= 601)) {
  document.write('<link rel="stylesheet" type="text/css" href="1024b.css">');
}
if ((winW >= 1025) || (winH >= 769)) {
  document.write('<link rel="stylesheet" type="text/css" href="1280b.css">');
}
if ((winW >= 1281) || (winH >= 1025)) {
  document.write('<link rel="stylesheet" type="text/css" href="1600b.css">');
}
-->
