

<!--
function openWindow(URL)
{
        //This launches a new window and then
        //focuses it if window.focus() is supported.
        newwin = window.open(URL,'MyNewWindow','scrollbars=no,resizable=no,width=200,height=100');
        if(parseInt(navigator.appVersion) >= 4)
        {
                //delay a bit here because IE4 encounters errors
                //when trying to focus a recently opened window
                setTimeout('newwin.focus();',250);
        }
}

function openWindow2(URL)
{
        //This launches a new window and then
        //focuses it if window.focus() is supported.
        newwin = window.open(URL,'MyNewWindow','scrollbars=no,resizable=no,width=600,height=481');
        if(parseInt(navigator.appVersion) >= 4)
        {
                //delay a bit here because IE4 encounters errors
                //when trying to focus a recently opened window
                setTimeout('newwin.focus();',250);
        }
}
//-->

function openWindow3(URL)
{
        //This launches a new window and then
        //focuses it if window.focus() is supported.
        newwin = window.open(URL,'MyNewWindow','scrollbars=no,resizable=no,width=840,height=606');
        if(parseInt(navigator.appVersion) >= 4)
        {
                //delay a bit here because IE4 encounters errors
                //when trying to focus a recently opened window
                setTimeout('newwin.focus();',250);
        }
}
//-->

function openWindow4(URL)
{
        //This launches a new window and then
        //focuses it if window.focus() is supported.
        newwin = window.open(URL,'MyNewWindow','scrollbars=no,resizable=no,width=640,height=560');
        if(parseInt(navigator.appVersion) >= 4)
        {
                //delay a bit here because IE4 encounters errors
                //when trying to focus a recently opened window
                setTimeout('newwin.focus();',250);
        }
}
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

