function v_contatenos(){
        
	var ok  = false;
	var campos= "";
        var contador=0;
        var ind=0;

	document.getElementById("envia").value="";

        if(document.getElementById("Nombre").value != null && document.getElementById("Nombre").value == ""){
		campos=" - Nombre \n";
	}else{
           contador=contador + 1;
        }
	
	if(document.getElementById("Ciudad").value != null && document.getElementById("Ciudad").value == ""){
		campos=campos +" - Ciudad \n";
	}else{
           contador=contador + 1;
        }
       
	 if(document.getElementById("Pais").value != null && document.getElementById("Pais").value == ""){
		campos=campos + " - Pais \n";
	}else{
           contador=contador + 1;
        }

        if(document.getElementById("mensaje").value != null && document.getElementById("mensaje").value == ""){
		campos=campos + " - Comentario \n";
	}else{
           contador=contador + 1;
        }
		


                
        if(document.getElementById("email").value != null && document.getElementById("email").value == ""){
		campos=campos + " - Email \n";
	}else if(document.getElementById("email").value != ""){
		var ind1, ind2, ind3;
		ind1 = document.getElementById("email").value.indexOf('@');
		ind2 = document.getElementById("email").value.indexOf('.');
		ind3 = document.getElementById("email").value.lastIndexOf('@');
		if ((ind1<=0) || (ind2<=0) || (ind3 != ind1))	{
			ind=1;
		}else{
                   contador=contador + 1;
                }
        }

       

	if(contador == 5){
             ok=true;
        }else{
		     if(ind==1 && contador == 4){
			alert("El correo electronico ingresado no es valido");
		     }else{
		       		var msn1="Los siguientes campos obligatorios no han sido diligenciados: \n\n"
				var msn2="Por favor diligencie el valor de estos campos."
		       		alert(msn1+campos+"\n"+msn2);
		     }
	}

        return(contador);
	

}