function clearSearchText(theElement)
{

//alert("The element Name is: " + theElement.name + " The Value is: " + theElement.value)

if(theElement.value.toLowerCase() == "enter your email or gamertag")
	{
		theElement.value = "";
	}

if(theElement.value.toLowerCase() == "enter your email")
	{
		theElement.value = "";
	}

}