/*
 *
 * Clears a text input box when clicked upon.
 *
 */

function doClear(text)
{
	if (text.value == text.defaultValue)
	{
		text.value = ""
	}
}
