function hideForm() {
	if (!document.getElementsByTagName) return;
	if (!document.getElementById("forgot-form")) return;
	
	if (location.href.indexOf("forgot-form") != -1) {
		//console.log("dont hide");
	}
	else {
		//console.log("hide");
		var whichForm = document.getElementById("forgot-form");
		whichForm.style.display = "none";
	}
	
	var addForgotLink = document.getElementById("fieldset-forgot");
	//add text
	
	var p = document.createElement('p');
	p.id = "forgotLink";
	addForgotLink.appendChild(p);
	
	p.innerHTML = '<a title="Forgotten your password?" href="#forgotten" onclick="showForm();">Forgotten your password?<\/a>';
}

function showForm() {
	var whichForm = document.getElementById("forgot-form");
	if(whichForm.style.display == "none") {
		whichForm.style.display = "block";
	} else {
		whichForm.style.display = "none";
	}
}

addLoadEvent(hideForm);




					
