<!-- Begin
  var ScrnSize = "UnCommon"


  if (navigator.appVersion.indexOf("4.") != -1 && 
      navigator.appName.indexOf("Netscape") != -1) {
     ScrnSize = screen.width + "x" + (screen.height + 19); //Netscape sees 19 pixels less on Height
  }
  else {
     ScrnSize = screen.width + "x" + screen.height;
  }
  switch(ScrnSize) {
	case "800x600":   document.write('<body background="800x600.jpg" scroll="yes">');
    case "1024x768":  document.write('<body background="1024x768.jpg">');
    case "1152x864":  document.write('<body background="1152x864.jpg">');
    case "1280x1024": document.write('<body background="1280x1024.jpg">');
	case "1280x960": document.write('<body background="1280x960.jpg">');
	case "1280x800": document.write('<body background="1280x800.jpg">');
    case "1600x1200": document.write('<body background="1280x960.jpg">');
    case "1600x1280": document.write('<body background="1280x960.jpg">');
    default:          document.write('<body background="1024x768.jpg">');
  }

//  document.write('Screen Resolution=' + screen.width + "x" + screen.height);

//  End -->