/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function goPage(newURL){
    if (newURL != ''){
        if(newURL=='-'){
            document.location.href=newURL;
        }
        else{
            document.location.href=newURL;
        }
    }
}
function resetMenu(){
    document.gomenu.selector.selectedIndex=1;
}

