function clearTextbox(theText) 
{
	if (theText.value == theText.defaultValue)
	{
		theText.value = "";
	}
}
function repopulateTextbox(theText)
{
	if (theText.value == "")
	{
		theText.value = theText.defaultValue;
	}
}
