function jumpMenu(targ,selObj,restore){
	if (selObj.options[selObj.selectedIndex].value == "http://www.healthcitybasic.nl/")
	{
		window.open("http://www.healthcitybasic.nl/");
		selObj.selectedIndex=0;
		return true;
	}
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}