// JavaScript Document

Goto = function (itObj) {
		if (itObj != ""){
			nIndex = itObj.selectedIndex;
		if(itObj.options[nIndex].value != "") { 
			window.location = itObj.options[nIndex].value; 
		}
		else { 
			itObj.options[0].selected = true; 
		}
	}
}


