//---------------------------------------------------------------------------------------------
// VALIDAÇÕES 
function vazio (campo, mensagem){
	
	document.getElementById(campo).style.backgroundColor = '';
	if (document.getElementById(campo).value.length==0) {
			document.getElementById(campo).style.backgroundColor = 'red';
			alert("" + mensagem + "");
			document.getElementById(campo).focus();
			return true;
	}
	return false;
}

function email (campo, mensagem){
	document.getElementById(campo).style.backgroundColor = '';
	if (document.getElementById(campo).value.length==0) {
			document.getElementById(campo).style.backgroundColor = 'red';
            alert("" + mensagem + "");
			document.getElementById(campo).focus();
			return true;
	}
	if (document.getElementById(campo).value.indexOf('@', 0) == -1) {
			document.getElementById(campo).style.backgroundColor = 'red';
			alert("O campo E-mail incorreto!");
			document.getElementById(campo).focus();
			return true;
	}
	if (document.getElementById(campo).value.indexOf('.', 0) == -1) {
			document.getElementById(campo).style.backgroundColor = 'red';
			alert("O campo E-mail incorreto!");
			document.getElementById(campo).focus();
			return true;
	}
	return false;
	
}
//---------------------------------------------------------------------------------------------
