function resetMail() {
	document.getElementById('mail_addr').style.color = 'black';
	document.getElementById('mail_name').style.color = 'black';
	document.getElementById('mail_subj').style.color = 'black';
	document.getElementById('mail_text').style.color = 'black';
}

function checkMail() {
	if (isEmail('mail_addr') & isNome('mail_name') & isOggetto('mail_subj') & isTesto('mail_text')) {
		return true;
	}
	window.alert("Devi compilare correttamente tutti i campi, correggi quelli lasciati in bianco o colorati in rosso.");
	return false;
}

function isEmail(id) {
	var regexp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
	if (!document.getElementById(id).value.match(regexp)) {
		document.getElementById(id).focus();
		document.getElementById(id).style.color = 'red';
		return false;
	}
		document.getElementById(id).style.color = 'black';
	return true;
}

function isNome(id) {
	if (document.getElementById(id).value == '' || document.getElementById(id).value == 'Il tuo nome'){
		document.getElementById(id).focus();
		document.getElementById(id).style.color = 'red';
		return false;
	}
		document.getElementById(id).style.color = 'black';
	return true;
}

function isOggetto(id) {
	if (document.getElementById(id).value == "" || document.getElementById(id).value == 'L\'oggetto del messaggio'){
		document.getElementById(id).focus();
		document.getElementById(id).style.color = 'red';
		return false;
	}
		document.getElementById(id).style.color = 'black';
	return true;
}

function isTesto(id) {
	if (document.getElementById(id).value == "" || document.getElementById(id).value == 'Il testo del messaggio'){
		document.getElementById(id).focus();
		document.getElementById(id).style.color = 'red';
		return false;
	}
		document.getElementById(id).style.color = 'black';
	return true;
}