function checkPassword(pw) {
	Check = prompt('Passwort');
	if (Check == pw) {
      	return true;
    } else {
    	alert('falsches Passwort');
  		return false;
	}
}

function email(n,h)
{
    window.location.href = 'mailto:' + n + '@' + h;
}
