// JavaScript Document

function clearText(thefield){
	if(thefield.value == thefield.defaultValue)
	{ thefield.value = ""; }
}

function putText(thefield) {
	if (thefield.value == "")
	{ thefield.value = thefield.defaultValue; }
}
