//---------------------------------------------------------------------------------------------
// 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 nome (campo, mensagem){
	
	document.getElementById(campo).style.backgroundColor = '';
	if (document.getElementById(campo).value.length < 3) {
			document.getElementById(campo).style.backgroundColor = 'red';
			alert("" + mensagem + "");
			document.getElementById(campo).focus();
			return true;
	}
	return false;
}

function endereco (campo, mensagem){
	
	document.getElementById(campo).style.backgroundColor = '';
	if (document.getElementById(campo).value.length < 3) {
			document.getElementById(campo).style.backgroundColor = 'red';
			alert("" + mensagem + "");
			document.getElementById(campo).focus();
			return true;
	}
	return false;
}

function estados (campo, mensagem){
	
	document.getElementById(campo).style.backgroundColor = '';
	if (document.getElementById(campo).value.length == '') {
			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;
	
}

function telefone (campo, mensagem){
	
	document.getElementById(campo).style.backgroundColor = '';
	if (document.getElementById(campo).value.length < 14) {
			document.getElementById(campo).style.backgroundColor = 'red';
			alert("" + mensagem + "");
			document.getElementById(campo).focus();
			return true;
	}
	return false;
}



//---------------------------------------------------------------------------------------------

