// JavaScript Document

/* clear textbox on click */
function doClear(theText) 
{
	if (theText.value == theText.defaultValue)
	{
		theText.value = ""
	}   
}
