function check_login()
{
		secure_login();
}
function secure_login()
{
	document.getElementById('wachtwoord').value = hex_md5(document.getElementById('wachtwoord').value);
	document.cookie = "secure=true";
	document.forms[1].action = "https://www.everhost.nl/klant/php/login/login.php";
	document.getElementById('loginform').submit;
}