function cancellatext(thefield){
	if (thefield.defaultValue==thefield.value){
		thefield.style.color="#000000";
		thefield.value = "";
	}
};

function ripristina(thefield){
	if (thefield.value==""){
		thefield.style.color="#999999";
		thefield.value = thefield.defaultValue;
	}
}