function openForgot() {
	document.getElementById('forgotBox').style.display = '';
}

function closeForgot() {
	document.getElementById('forgotBox').style.display = 'none';
}

function openWrong() { 
	document.getElementById('wrongBox').style.display = '';
}

function closeWrong() {
	document.getElementById('wrongBox').style.display = 'none';
}

function $(name) {
	return document.getElementById(name);
}