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