browser = (((navigator.appName == "Netscape") &&
(parseInt(navigator.appVersion) >= 4 )) || ((navigator.appName ==
"Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4))
 || ((navigator.appName =="Opera") && (parseInt(navigator.appVersion) >= 4
)))

function MMopenBrWindow(theURL,winName,features) 
{
	window.open(theURL,winName,features);
}

function openAWindow( pageToLoad, winName, width, height, center) {
if (browser) 
{
     xposition=0; yposition=0;
    if ((parseInt(navigator.appVersion) >= 3 ) && (center)){
        xposition = 10;
        yposition = 10;    }
    args = "width=" + width + ","     + "height=" + height + "," 
    + "location=0,"     + "menubar=0,"    + "resizable=0,"    + "scrollbars=yes,"
    + "status=0,"     + "titlebar=0,"    + "toolbar=0,"    + "hotkeys=0,"
    + "screenx=" + xposition + ","  //NN Only
    + "screeny=" + yposition + ","  //NN Only
    + "left=" + xposition + ","     //IE Only
    + "top=" + yposition;           //IE Only
    window.open( pageToLoad,winName,args );}
}

function Go(x)
{
 if(x == "nothing")
 {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   parent.window.focus();
   return;
 }
 else
  {
   parent.window.location.href = x;
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   parent.window.focus();
  }
}