// JavaScript Document

function initLoginwindow() {
	 document.getElementById("login_form").style.display = "block";
	 document.getElementById("forgot_form").style.display = "none";
}


function initForgotwindow() {
	document.getElementById("login_form").style.display = "none";
	document.getElementById("forgot_form").style.display = "block";
}
		
		
		

