<!--

if(frames)
  { if(top.frames.length > 0) top.location.href=self.location; }
else
  { open("noframe/index.htm", "NoframeWindow"); close(); }

if(navigator.appVersion.substring(0,1) >="4")
{
 var x = 0
 var y = 0

 if (screen.availWidth <= 1024)
  {
  var high  = screen.availHeight;
  var wide = screen.availWidth;
  }
 else
  {
  var high  = 768;
  var wide = 1024;
  y = (screen.availHeight - 768)/2;
  x = (screen.availWidth - 1024)/2;  
  }

  if(navigator.appName == "Netscape")
    { window.outerHeight = high; window.outerWidth = wide; window.moveTo(x,y); }
  else if(navigator.appName == "Microsoft Internet Explorer")
    { window.resizeTo(wide, high); window.moveTo(x,y); }
  else if(navigator.appName == "Opera")
    { window.resizeTo(screen.width, screen.height); window.moveTo(x,y); }
}
//-->