// Description: Sets an inital value of a form //              field to a white character// Programmer:  Todd Moy// URL:         http://www.metonym.org// Date:        3-26-02function clearText(thefield){	if (thefield.defaultValue==thefield.value)	thefield.value = ""} 