function MM_jumpMenuGo(objId, target, restore)
{
	var selObj = null;  
	
	with (document)
	{
		if (getElementById)
		{
			selObj = getElementById(objId);
		}
		
		if (selObj)
		{
			eval(target + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
		}
		
		if (restore)
		{
			selObj.selectedIndex = 0;
		}
	}
}

function MM_jumpMenu(target, selObj, restore)
{
	eval(target + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
	
	if (restore)
	{
		selObj.selectedIndex = 0;
	}
}
