<!--// -----------------------------------------------------// ------------------Date:01-03-06------------------// clears the text value in a text input or textareafunction clearDefaultText(visitor,text){	if (!visitor) visitor = this;			if (visitor.value == text){ 		visitor.value = '';	}}function addDefaultText(visitor,text){	if (!visitor) visitor = this;			if (visitor.value == ''){		visitor.value = text;	}}//-->