function validaForm () {
	var erro="";
	
	if (document.form.sNome.value=="") {
		erro = erro + "\n Fill his NAME correctly.";
	} 
	
	if (!isValidMail (document.form.sEmail.value)) {
		erro = erro + "\n Fill his E-MAIL correctly";
	}		

	if (document.form.sEndereco.value=="") {
		erro = erro + "\n Fill his ADDRESS correctly";
	} 

	if (document.form.sNumero.value=="") {
		erro = erro + "\n Fill his NUMBER correctly";
	} 

	if (document.form.sCidade.value=="") {
		erro = erro + "\n Fill his CITY correctly";
	} 
	
	if (document.form.sUF.value=="") {
		erro = erro + "\n Fill his STATE correctly";
	} 
	
	if (document.form.sPais.value=="") {
		erro = erro + "\n Fill his COUNTRY correctly";
	} 	
		
	if (document.form.sAssunto.value=="") {
		erro = erro + "\n Fill his SUBJECT correctly";
	} 	
	
	if (erro=="") {
		return true;
	}	else {
		alert ("\t Atenção!\n" + erro);
		return false;
	}		
}

function isValidMail(sEmail){
	 var retorno = true;
	 if (sEmail.indexOf("@",0) == -1) retorno = false;
	 if (sEmail.indexOf(".",0) == -1) retorno = false;
	 if (sEmail.indexOf("@.",0) != -1) retorno = false;   
	 if (sEmail.length < 5) retorno = false;
	 
	 return retorno; 
}

function barra(sNascimento){
	if (sNascimento.value.length == 2 || sNascimento.value.length == 5 ){
	sNascimento.value = sNascimento.value+"/";
	}
}

