<!-- Start
if (top.frames.length != 0)
  top.location = self.document.location;

  self.moveTo(0,0);
  self.resizeTo(screen.availWidth,screen.availHeight);

function openNewWindow(){
  newWin = window.open(self.document.location);
  newWin.opener = self;
  }

function resizer(){
 if (navigator.appName == "Netscape"){
  for (x=0;x<window.frames.length;x++){
   window.frames[x].location.reload(false);
  }
 }
}
// End -->
