
function ComprobarForm(listacampos){
	var Nombre = (eval("document.getElementById('Nombre')")!=null)?document.getElementById('Nombre').value:null;
	var Email = (eval("document.getElementById('Email')")!=null)?document.getElementById('Email').value:null;
	var Texto = (eval("document.getElementById('Texto')")!=null)?document.getElementById('Texto').value:null;
	var Acepto = (eval("document.getElementById('Acepto')")!=null)?document.getElementById('Acepto').checked:null;
	var Asunto = (eval("document.getElementById('Asunto')")!=null)?document.getElementById('Asunto').value:null;
	
	var Empresa = (eval("document.getElementById('Empresa')")!=null)?document.getElementById('Empresa').value:null;
	var Empresa_tipo = (eval("document.getElementById('Empresa_tipo')")!=null)?document.getElementById('Empresa_tipo').value:null;
	var Apellidos = (eval("document.getElementById('Apellidos')")!=null)?document.getElementById('Apellidos').value:null;
	var Cargo = (eval("document.getElementById('Cargo')")!=null)?document.getElementById('Cargo').value:null;
	var Telefono = (eval("document.getElementById('Telefono')")!=null)?document.getElementById('Telefono').value:null;
	var Pais = (eval("document.getElementById('Pais')")!=null)?document.getElementById('Pais').value:null;
	
	for (i=0;i<listacampos.length;i++)
	{
		if(Nombre=='' && listacampos[i]=='Nombre'){
			alert('Name field can\'t be empty.');
			document.getElementById('Nombre').focus();
			return false;
		}	
		if (listacampos[i]=='Email')
		{
			if(Email=='' ){
				alert('E-mail field can\'t be empty.');
				document.getElementById('Email').focus();										
				return false;
			}
			if (Email!=null && !VerificarMail(Email)){ 
				 alert('E-mail field is not correct.'); 
				 document.getElementById('Email').focus();
				 return false; 
			}
		}
		if (listacampos[i]=='Texto')
		{
			if(Texto==''){
				alert('Text field can\'t be empty.');
				document.getElementById('Texto').focus();										
				return false;
			}
			if(Texto!=null && Texto.length > 10000){
				alert('Text field Text can\'t exceed 10000 characters.');
				document.getElementById('Texto').focus();										
				return false;
			}
		}
		
		if (listacampos[i]=='Asunto')
		{
			if(Asunto==''){
				alert('Subject field can\'t be empty.');
				document.getElementById('Asunto').focus();										
				return false;
			}
		}
		
		if(Acepto!=null && !Acepto && listacampos[i]=='Acepto'){
			alert('Text field Text can\'t exceed 10000 characters.');
			document.getElementById('Acepto').focus();										
			return false;
		}
		
		if(Empresa=='' && listacampos[i]=='Empresa'){
			alert('Legal name field can\'t be empty.');
			document.getElementById('Empresa').focus();
			return false;
		}	
		
		if(Empresa_tipo=='' && listacampos[i]=='Empresa_tipo'){
			alert('Type of company field can\'t be empty.');
			document.getElementById('Empresa_tipo_sel').focus();
			return false;
		}
		
		if(Apellidos=='' && listacampos[i]=='Apellidos'){
			alert('Surname field can\'t be empty.');
			document.getElementById('Apellidos').focus();
			return false;
		}	
		
		if(Cargo=='' && listacampos[i]=='Cargo'){
			alert('Position field can\'t be empty.');
			document.getElementById('Cargo').focus();
			return false;
		}
		
		if(Telefono=='' && listacampos[i]=='Telefono'){
			alert('Telephone field can\'t be empty.');
			document.getElementById('Telefono').focus();
			return false;
		}	
		
		if(Pais=='' && listacampos[i]=='Pais'){
			alert('Country field can\'t be empty.');
			document.getElementById('Pais').focus();
			return false;
		}
	}
	return true;
}

        
