<!--
function ExtraImage(img,alt)
{
  var WinWidth = "UnCommon"

  if (document.layers) { WinWidth = window.outerWidth; }
  if (document.all) { WinWidth = document.body.clientWidth; }

  if (WinWidth > 900) {
    document.write('<img class="head" src="/i/header/',img,'" alt="',alt,'" />');
  }
}






function screensize() {
  var ScrnSize = "UnCommon"
  var WinSize = "UnCommon"
  var WinWidth = "UnCommon"

  ScrnSize = screen.width + "x" + screen.height;
  WinSize = document.body.offsetWidth + "x" + document.body.offsetHeight;

if (document.layers) {
  WinWidth = window.outerWidth;
}
if (document.all) {
  WinWidth = document.body.clientWidth;
}

//  if (navigator.appVersion.indexOf("4.") != -1 && 
//      navigator.appName.indexOf("Explorer") != -1) {
//     ScrnSize = screen.width + "x" + screen.height;
//  }
//  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
//  }
//  switch(ScrnSize) {
//    case "640x480":   document.write('<body bgcolor="#FF0000" text="#000000">');
//    case "800x600":   document.write('<body bgcolor="#00FF00" text="#000000">');
//    case "1024x768":  document.write('<body bgcolor="#0000FF" text="#000000">');
//    case "1024x768":  document.write('<p>1024x768</p>'); break;
//    case "1152x864":  document.write('<body bgcolor="#FFFF00" text="#000000">');
//    case "1280x1024": document.write('<body bgcolor="#AA0000" text="#000000">');
//    case "1440x900":  document.write('<body bgcolor="#AA0000" text="#000000">');
//    case "1440x900":  document.write('<p>1440x900</p>'); break;
//    case "1600x1200": document.write('<body bgcolor="#FF00FF" text="#000000">');
//    case "1600x1280": document.write('<body bgcolor="#00AA00" text="#000000">');
//    default:          document.write('<body bgcolor="#FFFFFF" text="#000000">');
//  }

  if (WinWidth > 900) {
//    document.write('<img style="margin-left: 85px;border-left:1px solid #ccc;border-right:1px solid #ccc;" src="/rayners/i/header/header1.jpg" width="150" height="100" border="0" alt="" />');
    document.write('<img style="border-right:1px solid #ccc;" src="/rayners/i/header/header3.jpg" width="150" height="100" border="0" alt="" />');
  }
//  else {
//    document.write('<img style="margin-left: 85px;border-left:1px solid #ccc;border-right:1px solid #ccc;" src="/rayners/i/header/header1.jpg" width="150" height="100" border="0" alt="" />');
//  }

// The following 3 lines are for display only. They can safely be removed.
//  document.write('Browser Type=' + navigator.appName + '<BR>');
//  document.write('Browser Version=' + navigator.appVersion + '<BR>');
//  document.write('Screen Resolution=' + screen.width + "x" + screen.height);
//  document.write('Screen Resolution=' + ScrnSize);
//  document.write(' Window Width=' + WinWidth);
}
//-->