// JavaScript Document

//function sendRequest() {
//      products.action = products.gourl.options[ document.products.gourl.selectedIndex ].value;
//      products.submit();
//}


//function initForm() {
//	document.getElementById("newLocation").selectedIndex = 0;
//	document.getElementById("newLocation").onchange = jumpPage;
//}

window.onload = initForm;

window.onunload = function() {};

 

function initForm() {

                document.getElementById("newLocation").selectedIndex = 0;
        //document.getElementById("newLocation").onchange = jumpPage;

}

 

function jumpPage() {

     var newLoc = document.getElementById("newLocation");

     var newPage = newLoc.options[newLoc.selectedIndex].value;



     if (newPage != "") {
           window.location = newPage;

     }

}

