<!--
function PopUpPullDown(zielseite){
	myPopUp = window.open(zielseite,"LU","toolbar=1,menubar=1,location=1,width=700,height=500,resizable,scrollbars,status");
}

function jumpMenu(targ,selObj,restore){ 

  var ziel = selObj.options[selObj.selectedIndex].value;
  var resultat = ziel.search(/http.+/);
  if(resultat != -1){
  PopUpPullDown(ziel);}
  else{
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
  }
}

function spamschutz(part1,part2)
{
	var spamschutz = "mailto:"+part1+"@"+part2;
	document.location.href = spamschutz;
}

function setFocus()
{
var checkValue;
try{
 checkValue = document.getElementById("password").focus()	
}catch(e){
 checkValue = 0;	
}

if(checkValue!=0){
document.getElementById("password").focus()
}
}
//-->
