// Example usage: <input type="text" value="Username" onFocus="clearText(this)">

function clearText(thefield)
{
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}
