function loadPage(useremail) {
	if (useremail != "Guest")
		document.getElementById("title").style.display = "none";

	else {
		document.getElementById("login-pass").style.display = "none";
		document.getElementById("pass_placeholder").style.display = "";
	}
}

function showPassword() {
	document.getElementById("login-pass").style.display = "";
	document.getElementById("pass_placeholder").style.display = "none";
	document.getElementById("login-pass").focus();
}

function nospam(deux, trois, un, txt, sbjct) {
	displaystr = "<a href='mailto:" + un + "@" + deux + "." + trois + "?subject=" + sbjct + "'>";
	if (txt == "dsply3prts")
		displaystr = displaystr + un + "@" + deux + "." + trois;
	else
		displaystr = displaystr + txt;
	displaystr = displaystr + "</a>";
	document.write(displaystr);
}
