// javascript utilities

function clearText(theText) {
	if (theText.value == theText.defaultValue)
	{
		try
		{
		// Clear the textbox
        theText.value = "";
		}
		catch(error){}
    }
 }

