function clearText(thefield, defaulttext)
{
	if (thefield.value == defaulttext)
		thefield.value = "";
}

