//exemplo de chamadas
//			if(valCampo('txtNome',2,'o nome!')==false) return false;			
//			if(valCampo('txtEmail',2,'o e-mail!')==false) return false;			
//			if(valMail('txtEmail')==false) return false;
//			if(valCampo('txtComentario',2,'um comentario!')==false) return false;	
//			if(eLementos('txtComentario').value.length>500){
//				alert('O campo comentário aceita no máximo 500 caracteres.')
//				eLementos('txtComentario').focus();
//				return false;
//			}
//			eLementos('formComentario').submit();



//[BEGIN]-Função principal iniciada no <body>, verifica todos os formularios do site
//function initValidacao(){
//	///Form de busca da Home
//	if(eLementos('bt_News')){
//		eLementos('bt_News').onclick = function(){	
//		if(valCampo('news_nome',1,'seu nome!')==false) return false;
//			eLementos('formNewsletter').submit();
//		}		
//	}
//}//



///Form Newsletter
function ValidaCadNewsletter(){	
	if(valCampo('news_nome',3,'seu nome!')==false) return false;
	if(valMail('news_email')==false) return false;
}


///Form Login
function ValidaLogin(){	
	if(valMail('login_email')==false) return false;
	if(valCampo('login_senha',3,'sua senha!')==false) return false;
	
}

/////Login do Form de Empreendimentos 
//function valLoginPessoal(){
//	if(valMail('txtEmail')==false) return false;
//	if(valCampo('txtSenha',3,'sua senha!')==false) return false;	
//}
//
//
/////Form de RI 
//function valAddNewsletter(){
//	if(valCampo('txtNome',3,'o nome!')==false) return false;	
//	if(valMail('txtEmail')==false) return false;	
//}

//[END]-Função principal iniciada no <body>, verifica todos os formularios do site