// JavaScript Document
 // choose_css.js
  // -------------
  // choose the appropriate stylesheet according to
  // the user's screen resolution

  document.write("<style type='text/css' src='../css/default.css'><\/style>");

  if (window.screen.height <= 600) {
    //resolution is 800x600 or less
    document.write("<style type='text/css' src='../css/handheld.css'><\/style>");
  } else {
    document.write("<style type='text/css' src='../css/default.css'><\/style>");
  }
  
  
//   if ((w >= 1024) && (w <= 920)) {
//document.write('<link rel="stylesheet" href="Homepage800.css">');
//} 


