// JavaScript Document
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function envia_directorio(){
// The data to send to the server
	var params = {
	  nombre: document.form1.nombre.value
	  

	};
	
	$.ajax({
	  type: "POST",
	  url: "directorio_envia.php",
	  data: params,
		  
	  success: function(pasa)
	  {
	    document.getElementById('caja_derecha_blog_titulo_inf').innerHTML = '<span class="mensaje_contacto"> Gracias por enviar tu web, en breve la revisaremos!</span>';
		document.form1.reset();
	   }
	
	});
	
	
	
	

}

function envia_blogs(){
// The data to send to the server
	var params = {
	  nombre: document.form1.nombre.value
	  

	};
	
	$.ajax({
	  type: "POST",
	  url: "blogs_envia.php",
	  data: params,
		  
	  success: function(pasa)
	  {
	    document.getElementById('caja_derecha_blog_titulo_inf').innerHTML = '<span class="mensaje_contacto"> Gracias por enviar tu BLOG, en breve la revisaremos!</span>';
		document.form1.reset();
	   }
	
	});
	
	
	
	

}

function envia_form_contacto(){
// The data to send to the server
	var params = {
	  nombre: document.form1.nombre.value,
	  telefono: document.form1.telefono.value,	  
  	  email: document.form1.email.value,
  	  msg: document.form1.msg.value

	};
	
	$.ajax({
	  type: "POST",
	  url: "contacto_envia.php",
	  data: params,
		  
	  success: function(pasa)
	  {
	    document.getElementById('mensaje_contacto').innerHTML = '<span class="mensaje_contacto"> Gracias por contactar!</span>';
		document.form1.reset();
	   }
	
	});
	


}