// JavaScript Document to clear call me form

function clearText(thefield)
					{
						if (thefield.defaultValue == thefield.value)
										thefield.value = ""
      				else thefield.value = thefield.defaultValue
					} 	
