function clearText(thefield){
	if (thefield.defaultValue == thefield.value) thefield.value = "";
	thefield.style.color = "black";

}
function replaceText(thefield){
	if (thefield.value == "") thefield.value = thefield.defaultValue;
	thefield.style.color = "black";
}

