function cargarPagina(enlace, id_campo)
{
	campo = document.getElementById(id_campo);
	$.ajax({
	   type: "POST",
	   url: "index.php",
	   data: enlace,
	   success: function(msg){
	   		campo.innerHTML = msg;
	   }
	 });

}//Fin de cargarPagina()
 
