/*
	#########################################
	# Author:  			Chris Shennan		#
	# Creation Date:  	02/06/2005			#
	# Last Updated:		02/06/2005			#
	#########################################
*/

// #### FUNCTION TO REMOVE THE TEXT FROM THE TEXTBOX IF IT IS THE DEFAULT TEXT	####
function doClear(theText) 
{
	if (theText.value == theText.defaultValue) 
	{
		theText.value = "";
	}
}
