// css.js
// -------------
// choose the appropriate stylesheet according to
// the user's screen resolution

document.write("<link rel='stylesheet' type='text/css' href='");

if (window.screen.height <= 601) {
      //resolution is 800x600 or less
     document.write("800.css'>");
}

else if (window.screen.height >= 1024) {
     document.write("1280.css'>");
}

else  {
     document.write("1024.css'>");
 }

