function jump()
{
	var myindex=document.form1.quickmenue.selectedIndex;
	if (document.form1.quickmenue.options[myindex].value != "0")
	{
	  if (top.frames.length > 0)
	  	top.frames.location.href = document.form1.quickmenue.options[myindex].value ;
	  else
	  	window.location.href = document.form1.quickmenue.options[myindex].value ;
	}
}
