
function clearText(thefield){
	if (thefield.value==thefield.title)
		thefield.value = "";
}

function showText(thefield) {
	if(thefield.value=="")
		thefield.value = thefield.title;
}
