
// JavaScript Document


 function getherdone(form) {

        var myindex=form.select1.selectedIndex

        if (form.select1.options[myindex].value != "0") {

       	 location=form.select1.options[myindex].value;}

}


function go(whichURL) {
    windowDoPop=window.open(whichURL[whichURL.selectedIndex].value,'doPop','top=20,left=20,toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=auto,resizable=yes,width=750,height=550');
    windowDoPop.focus();
}



