function changePwd() 
{ 
	var hash;
	hash=calcMD5(document.login.pwd.value);
	document.login.pwd.value=hash;
}

function changePwdExt() 
{ 
	var hash;
	
	hash=calcMD5(document.PwdAendern.pwdNeu.value);
	document.PwdAendern.pwdNeu.value=hash;
	hash=calcMD5(document.PwdAendern.pwdBest.value);	
	document.PwdAendern.pwdBest.value=hash;
}

function popein(Id) {
	a=window.open("","popup","scrollbars=Yes,status=no,toolbar=no,location=no,directories=no,resizable=No,menubar=no,width=450,height=550");
	//a.document.write(h);
	//a.document.close();
	a.location="tms_suchen_detail.php?Id=" + Id;
}
