
function m_click(dest) 
{
	window.navigate(dest);
}

function SetIndexGivenValue(objList, value)
{
	for (var i=0; i<objList.length; i++){
		if (objList.options[i].text.toLowerCase() == value.toLowerCase()){
			objList.selectedIndex = i;
			break;
		}
	}
}



