function clickclear(thisfield, standardvalue) {
	fieldValue = standardvalue;
	thisfield.style.color = "#333333";
	if (thisfield.value == "" || thisfield.value == fieldValue) {
		thisfield.value = "";
		return true;
	}
	return false;
}

function clickrecall(thisfield) {
	if (thisfield.value == "" || thisfield.value == fieldValue) {
		thisfield.value = fieldValue;
		thisfield.style.color = "#666666";
	}
	return false;
}
