
function gotoURL(objSelect)
{
var tempValue=objSelect.options[objSelect.selectedIndex].value;
if(tempValue!="")
{
location.href=tempValue;
}

}