function check_screen() {

	if((screen.width<1024) || (screen.height<768))
	{
		alert("Diese Seite ist optimiert für eine Auflösung von 1024x768 Pixel oder höher.\nIhre Auflösung: "+screen.width+"x"+screen.height+" Pixel\n\nBitte ändern Sie die Bildschirmeinstellungen.\nAndernfalls kann die Seite auf Ihrem Bildschirm nicht vollständig dargestellt werden.");
	}

	document.login_form.password.focus();
}

function doChallengeResponse() 
{
	str = hex_md5(document.login_form.username.value + ":" +	hex_md5(document.login_form.password.value) + ":" + document.login_form.challenge.value);
	document.login_form.response.value = str;
	document.login_form.password.value = "";
	document.login_form.submit();
}