
<!-- Begin
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Bob Pearson :: http://www.pagecraft.on.ca */

var window.screen.width= 0, window.screen.height = 0;

if (parseInt(navigator.appVersion)>3) {
 if (navigator.appName=="Netscape") {
  window.screen.width = window.innerWidth-16;
}
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  window.screen.width = document.body.offsetWidth;
 }
}
if (window.screen.width <= 800) {
  document.write('<link rel="stylesheet" type="text/css" href="css2.css">');
}
if (window.screen.width <= 1024) {
  document.write('<link rel="stylesheet" type="text/css" href="cs1.css">');
}
else {
    document.write('<link rel=stylesheet type="text/css" href="css2.css">');
  }
}
// End -->
