function goToPage(url) 
{ 
    if (url !="" && url !="current")
    {
        navigate(url);
    }
}

function gotourl( mySelect ) 
{ 
    myIndex = mySelect.selectedIndex; 
    myValue = mySelect.options[myIndex].value; 
    if (myValue != "current")
    {
        window.location.href = myValue; 
    }
} 
