// clear textfield default text 
function clearText(thefield) {
	if (thefield.defaultValue==thefield.value) { thefield.value = "" }
} 

// replace textfield default text
function replaceText(thefield) {
	if (thefield.value=="") { thefield.value = thefield.defaultValue }
}