// JavaScript Document
function jumpURL(formname)
{
	var var_selected = formname.selectedIndex;
	window.location = formname.options[var_selected].value;
}

function MM_jumpMenu(selectid)
{ //v3.0
	//alert(selectid);
  if(Left(document.all(selectid).options[document.all(selectid).selectedIndex].value,4)=="http")
  {
  	window.open(document.all(selectid).options[document.all(selectid).selectedIndex].value)
  }
  else
   {
  	eval("parent.location='"+document.all(selectid).options[document.all(selectid).selectedIndex].value+"'");
   }
}
function Left(String, Length)
{
if (String == null)
return (false);

return String.substr(0, Length);
}