
function validateFormContactos(obj) {
	if((document.getElementById('email').value == '') && (document.getElementById('telefone').value == '')) {
		alert(formContactos_ErrorMessage1);
		return(false);
	}
	return validateStandard(obj);
}



