// JavaScript Document


function NavigateUp(/*As String*/ elementID)
{
var theSelector = document.getElementById(elementID);
var theIndex = theSelector.selectedIndex;
var theUrl = theSelector.options[theIndex].value;

window.location.href = theUrl;

return true;
}
