// JavaScript Document

function clearSearchText(theElement)
{

//alert("The element Name is: " + theElement.name + " The Value is: " + theElement.value)

if(theElement.value.toLowerCase() == "email")
	{
		theElement.value = "";
	}
if(theElement.value.toLowerCase() == "password")
	{
		theElement.value = "";
	}
}
