function Popup(url,name,width,height) {
	popup = window.open(url,name,"width="+width+",height="+height+",left=200,top=20,scrollbars=no,resizable=no");
	popup.focus();
}

function showDetail(schulid) {
	popup = window.open("/index.htm?cmd=schooldetail&pg=1&id=" + schulid,"schuldetail","width=700,height=500,left=200,top=10,scrollbars=yes,resizable=no,menubar=no");
	popup.focus();
}

function encrypt() {
	if (document.internatslogin.password.value == "") {
		alert("Bitte Passwort eingeben!");
		return false;
	} else {
		document.internatslogin.password.value = hex_md5(document.internatslogin.password.value);
		return true;
	}
}
