// JavaScript Document
function valig_email_fun(email)
{
//VALIDAR EL EMAIL INGRESADO
    if(email.length <= 0)
	{
	  return true;
	}
    var splitted = email.match("^(.+)@(.+)$");
    if(splitted == null) return false;
    if(splitted[1] != null )
    {
      var regexp_user=/^\"?[\w-_\.]*\"?$/;
      if(splitted[1].match(regexp_user) == null) return false;
    }
    if(splitted[2] != null)
    {
      var regexp_domain=/^[\w-\.]*\.[A-Za-z]{2,4}$/;
      if(splitted[2].match(regexp_domain) == null) 
      {
	    var regexp_ip =/^\[\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\]$/;
	    if(splitted[2].match(regexp_ip) == null) return false;
      }// if
      return true;
    }
return false;
}
//////////////////////////////////////////////////////////

//VALIDAR ESPACIOS EN BLANCO
function lTrim(sStr){
	while (sStr.charAt(0) == " ")
		sStr = sStr.substr(1, sStr.length - 1);
	 return sStr;
	}
	
function rTrim(sStr){
	 while (sStr.charAt(sStr.length - 1) == " ")
	  sStr = sStr.substr(0, sStr.length - 1);
	 return sStr;
}
function allTrim(sStr){
	 return rTrim(lTrim(sStr));
}
//////////////////////////////////////////////////////////
//Validar el NEWSLATTER
function valid_newletter(){
	error = true;	
	/////////// VALIDAR NOMBRE ////////		
	if(allTrim(document.frmnews.txtName.value)==""){
		document.frmnews.txtName.value="";						
		document.getElementById('div_name').innerHTML="Ingresa tu nombre";
		document.frmnews.txtName.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_name').innerHTML="";
		document.frmnews.txtName.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////	
	/////////// VALIDAR APELLIDOS ////////		
	if(allTrim(document.frmnews.txtLastName.value)==""){
		document.frmnews.txtLastName.value="";						
		document.getElementById('div_last').innerHTML="Ingresa tus apellidos";
		document.frmnews.txtLastName.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_last').innerHTML="";
		document.frmnews.txtLastName.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////	
	/// VALIDAR EMAIL ///////////////
	if(allTrim(document.frmnews.txtEmail.value)==""){
		document.frmnews.txtEmail.value="";
		document.frmnews.txtEmail.style.backgroundColor='#FDA8AA';
		document.getElementById('div_email').innerHTML="Ingresa tu Email";		
		error = false;
	}else if(valig_email_fun(document.frmnews.txtEmail.value)==false){
			document.getElementById('div_email').innerHTML="Ingresa un email valido";
			document.frmnews.txtEmail.style.backgroundColor='#FDA8AA';			
			error = false;
	}else{
		document.getElementById('div_email').innerHTML="";
		document.frmnews.txtEmail.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////////////////////////
	/////////// VALIDAR APELLIDOS ////////		
	if(allTrim(document.frmnews.txtCountry.value)==""){
		document.frmnews.txtCountry.value="";						
		document.getElementById('div_pais').innerHTML="Ingresa tu Pa&iacute;s";
		document.frmnews.txtCountry.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_pais').innerHTML="";
		document.frmnews.txtCountry.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////	
	return error;
}

//Validar el NEWSLATTER
function valid_pensam(){
	error = true;	
	/////////// VALIDAR NOMBRE ////////		
	if(allTrim(document.frmpens.txtName.value)==""){
		document.frmpens.txtName.value="";						
		document.getElementById('div_name').innerHTML="Ingresa tu nombre";
		document.frmpens.txtName.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_name').innerHTML="";
		document.frmpens.txtName.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////	
	/////////// VALIDAR APELLIDOS ////////		
	if(allTrim(document.frmpens.txtLastName.value)==""){
		document.frmpens.txtLastName.value="";						
		document.getElementById('div_last').innerHTML="Ingresa tus apellidos";
		document.frmpens.txtLastName.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_last').innerHTML="";
		document.frmpens.txtLastName.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////	
	/// VALIDAR EMAIL ///////////////
	if(allTrim(document.frmpens.txtEmail.value)==""){
		document.frmpens.txtEmail.value="";
		document.frmpens.txtEmail.style.backgroundColor='#FDA8AA';
		document.getElementById('div_email').innerHTML="Ingresa tu Email";		
		error = false;
	}else if(valig_email_fun(document.frmpens.txtEmail.value)==false){
			document.getElementById('div_email').innerHTML="Ingresa un email valido";
			document.frmpens.txtEmail.style.backgroundColor='#FDA8AA';			
			error = false;
	}else{
		document.getElementById('div_email').innerHTML="";
		document.frmpens.txtEmail.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////////////////////////
	
	return error;
}

//Validar el Contactenos
function valid_contact(){
	error = true;	
	/////////// VALIDAR NOMBRE ////////		
	if(allTrim(document.frm001.txtName.value)==""){
		document.frm001.txtName.value="";						
		document.getElementById('div_name').innerHTML="Ingresa tu nombre";
		document.frm001.txtName.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_name').innerHTML="";
		document.frm001.txtName.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////	
	
	/// VALIDAR EMAIL ///////////////
	if(allTrim(document.frm001.txtEmail.value)==""){
		document.frm001.txtEmail.value="";
		document.frm001.txtEmail.style.backgroundColor='#FDA8AA';
		document.getElementById('div_email').innerHTML="Ingresa tu Email";		
		error = false;
	}else if(valig_email_fun(document.frm001.txtEmail.value)==false){
			document.getElementById('div_email').innerHTML="Ingresa un email valido";
			document.frm001.txtEmail.style.backgroundColor='#FDA8AA';			
			error = false;
	}else{
		document.getElementById('div_email').innerHTML="";
		document.frm001.txtEmail.style.backgroundColor='#FFFFFF';
	}
	
	/////////// VALIDAR PAIS ////////		
	if(allTrim(document.frm001.txtCountry.value)==""){
		document.frm001.txtCountry.value="";						
		document.getElementById('div_pais').innerHTML="Ingresa tu Pais";
		document.frm001.txtCountry.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_pais').innerHTML="";
		document.frm001.txtCountry.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////////////////////////
	
	/////////// VALIDAR ASUNTO ////////		
	if(allTrim(document.frm001.txtAsunto.value)==""){
		document.frm001.txtAsunto.value="";						
		document.getElementById('div_asunt').innerHTML="Ingresa el Asunto";
		document.frm001.txtAsunto.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_asunt').innerHTML="";
		document.frm001.txtAsunto.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////////////////////////
	
	/////////// VALIDAR ASUNTO ////////		
	if(allTrim(document.frm001.txtMensaje.value)==""){
		document.frm001.txtMensaje.value="";						
		document.getElementById('div_msje').innerHTML="Ingresa el Mensaje";
		document.frm001.txtMensaje.style.backgroundColor='#FDA8AA';
		error = false;
	}else{
		document.getElementById('div_msje').innerHTML="";
		document.frm001.txtMensaje.style.backgroundColor='#FFFFFF';
	}
	/////////////////////////////////////////////////////////
	
	return error;
}
