// JavaScript Document

if (screen.width > 1600)  {
  document.write('<link rel="stylesheet" type="text/css" href="1600.css" />');

}

if (screen.width <= 1600)  {
  document.write('<link rel="stylesheet" type="text/css" href="1600.css" />');

}

if (screen.width <= 1280)  {
  document.write('<link rel="stylesheet" type="text/css" href="1280.css" />');

}

if (screen.width <= 1024) {
  document.write('<link rel="stylesheet" type="text/css" href="1024.css" />');

}

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

if (screen.width <= 640) {
  document.write('<link rel="stylesheet" type="text/css" href="640.css" />');
  
}


/*
function detectBrowser()
{
var browser=navigator.appName;
var b_version=navigator.appVersion;
var version=parseFloat(b_version);
if ((browser=="Microsoft Internet Explorer") && (version<7)){
  alert("Internet 6 is known to have compatabiity issues with this site.\nPlease ugrade your Browser to Explorer 7 or higher.\nOtherwise you should consider another Browser like\nFireFox, Flock, Chrome, or Opera!");
  }
}
*/
