function PopUpW(GoURL){
    if (navigator.appName == "Netscape")
       window.open(GoURL,"screenp","width=690,height=550,scrollbars=1,resizable=1,location=0,menu=1,screenX=110,screenY=30");
    else if (navigator.appName == "Microsoft Internet Explorer")
       window.open(GoURL,"screenp","width=690,height=550,scrollbars=1,resizable=1,location=0,menu=1,left=110,top=30"); 
}

function PopUpHelp(GoURL){
    if (navigator.appName == "Netscape")
       window.open(GoURL,"info","width=430,height=300,scrollbars=1,resizable=1,location=0,menu=1,screenX=100,screenY=25");
    else if (navigator.appName == "Microsoft Internet Explorer")
       window.open(GoURL,"info","width=430,height=300,scrollbars=1,resizable=1,location=0,menu=1,left=100,top=25"); 
}

function PopUpInfo(GoURL){
    if (navigator.appName == "Netscape")
       window.open(GoURL,"info","width=570,height=710,scrollbars=1,resizable=1,location=0,menu=1,screenX=100,screenY=15");
    else if (navigator.appName == "Microsoft Internet Explorer")
       window.open(GoURL,"info","width=570,height=710,scrollbars=1,resizable=1,location=0,menu=1,left=100,top=15"); 
}

function shut(){
           window.close();
}

function attention(){
  window.focus()
}

function end(theURL){
if (window.opener == null){
    window.location = theURL;
    }
else {
    window.opener.location = theURL;
    window.close();
    }
}

