<!--
var name = null;
var file = null;
var winwidth = null;
var winheight = null;
var hwnd = null;

function launch(file,name,winwidth,winheight)
{
var string="width="+winwidth+",height="+winheight+"toolbar=no,directories=no,menubar=no,resizable=yes,dependent=yes"
hwnd = window.open(file,name,string) ;
          if (navigator.appName == "Netscape") {
             hwnd.focus()  
          }
}
function no_urlscroll(file,name,winwidth,winheight)
{
var string="width="+winwidth+",height="+winheight+"status=yes,toolbar=no,directories=no,menubar=no,resizable=yes,dependent=yes,scrollbars=yes,location=no"
hwnd = window.open(file,name,string) ;
          if (navigator.appName == "Netscape") {
             hwnd.focus()  
          }
}
function scroll(file,name,winwidth,winheight)
{
var string="width="+winwidth+",height="+winheight+"toolbar=no,directories=no,menubar=no,resizable=yes,dependent=yes,scrollbars=yes"
hwnd2 = window.open(file,name,string) ;
          if (navigator.appName == "Netscape") {
             hwnd2.focus()  
          }
}
function locscroll(file,name,winwidth,winheight)
{
var string="width="+winwidth+",height="+winheight+"toolbar=no,directories=no,menubar=no,resizable=yes,dependent=yes,scrollbars=yes,location=yes,status=yes"
hwnd3 = window.open(file,name,string) ;
          if (navigator.appName == "Netscape") {
             hwnd3.focus()  
          }
}
function locscrollmenu(file,name,winwidth,winheight)
{
var string="width="+winwidth+",height="+winheight+"toolbar=yes,directories=no,resizable=yes,dependent=yes,scrollbars=yes,location=yes,status=yes,menubar=yes"
hwnd4 = window.open(file,name,string) ;
          if (navigator.appName == "Netscape") {
             hwnd4.focus()  
          }
}

function locmenu(file,name,winwidth,winheight)
{
var
string="width="+winwidth+",height="+winheight+"toolbar=no,directories=no,menubar=no,resizable=yes,dependent=yes,scrollbars=no,location=yes,status=yes,menubar=yes"
hwnd5 = window.open(file,name,string) ;
          if (navigator.appName == "Netscape") {
             hwnd4.focus()  
          }
}

function linkwin(file,name,winwidth,winheight)
{
var
string="width="+winwidth+",height="+winheight+"toolbar=yes,directories=no,menubar=yes,resizable=yes,dependent=yes,scrollbars=no,location=no,status=yes"
hwnd5 = window.open(file,name,string) ;
          if (navigator.appName == "Netscape") {
             hwnd4.focus()  
          }
}
-->
