function sizeElementHeight(cElementID,nHeight){
				if(parseInt(document.getElementById(cElementID).style.Height)<nHeight){
					nVar=-100;
				}else{
					nVar=100;
				}
				document.getElementById(cElementID).style.Height = 
				parseInt(document.getElementById(cElementID).style.Height)+nVar;

				if(parseInt(document.getElementById(cElementID).style.Height)<nHeight){
					window.setTimeout("sizeElementHeight('"+cElementID+"',"+nHeight+")", 1);
				}
			}
function FormOeffnen (Adresse) {
  Formular = window.open(Adresse, "form", "toolbar=no,scrollbars=no,menubar=no,hotkeys=no,dependent=yes,location=no,status=no,resizable=no,width=450,height=730");
  self.blur();  
  Formular.focus();
}
