// JavaScript Document

function clearText(thefield){
	alert ('Clear = ' + thefield.value)
	if(thefield.value == thefield.defaultValue)
	{ thefield.value = ""; }
}

function putText(thefield) {
	alert ('put = ' + thefield.value)
	if (thefield.value == "")
	{ thefield.value = thefield.defaultValue; }
}

