function winOpen(link)
  {
  var bars=",toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes"
  
  if (navigator.appName == "Netscape")
    {
    win=open("http://"+link,"","top=0,left=0,width="+screen.availWidth+",height="+screen.availHeight+bars);
    win.outerHeight=screen.height;
    win.outerWidth=screen.width;
    win.focus();
    }
  else
    {
    open("http://"+link,"","top=0,left=0,width="+screen.availWidth+",height="+screen.availHeight+bars);
    }
  }
