function checkUserOnFocus()
{
	if(document.theform.email.value == "E-mail")
		document.theform.email.value = "";
}
		
function checkUserOnBlur()
{
	if(document.theform.email.value == "")
		document.theform.email.value = "E-mail";
}
		
function checkPassOnFocus()
{
	if(document.theform.password.value == "")
	{
		document.theform.falsepass.style.display="none";
		document.theform.password.style.display="block";
		document.theform.password.focus();
	}
}
		
function checkPassOnBlur()
{
	if(document.theform.password.value == "")
	{
		document.theform.falsepass.style.display="block";
		document.theform.password.style.display="none";
		document.theform.falsepass.value="Password";
	}
}