<!-- Begin
  var ScrnSize = "UnCommon"

  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
  }

//  document.write(navigator.appName + '<BR>');
//  document.write(navigator.appVersion + '<BR>');
  document.write(screen.width + "x" + screen.height);

//  End -->
