<!--

var new_url="";

function gothere()
{ 
if ((new_url==null) || (new_url==""))
alert("Please click your selection again, then click the button"); 
else
window.location=new_url;
}  


var name;
var setup;

function PopUp(URL,width,height) 
{
    setup = "resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,width=" + width +",height=" + height;
    name = window.open(URL,"PopUp",setup);
    name.location = URL;
}

function windowOpen(URL) 
{
    setup = "resizable=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,width=500,height=450";
    name = window.open(URL,"Evaluator",setup);
    name.location = URL;

}


// -->

