// JavaScript Document
function validarFormulario(form){
	var strErro;
	var res;
	res=true;
	strErro="";
	
	if(!checkField(form,"nome"))
		strErro+="\n- Nome"; 
	
	if(!checkField(form,"email"))
		strErro+="\n- E-mail"; 
		
/*	if(!checkFieldSelect(form,"telefone")) 
		strErro+="\n- Telefone";
		
	if(!checkFieldSelect(form,"assunto")) 
		strErro+="\n- Assunto"; 
*/		
	if(!checkField(form,"mensagem")) 
		strErro+="\n- Mensagem";
	if (strErro) { 
		msgErroCamposEmFalta(strErro);
		res=false;
	   }    
		
    return res;
	
}
