function cproducto(id){
	$("#apx").load("php/cproducto.php", {id_producto: id},function(){
		document.getElementById('apx').style.display='block';
		document.getElementById('cantidad_px').focus();
		document.getElementById('cantidad_px').select();
	});
}

function agregar(vid, vnombre, vprecio, vimagen, vcantidad){
	$.get("php/introducir.php", { id_producto: vid, nombre: vnombre, precio: vprecio, imagen: vimagen, cantidad: vcantidad },
		 function(){
    $("#cooler_contenido").load("php/vercarrito.php");
  });

};
function quitar(vid){
	document.getElementById('fondo').style.display='block';
	$.get("php/quitar.php", { id_producto: vid },
		 function(){
    $("#cooler_contenido").load("php/vercarrito.php");
	document.getElementById('fondo').style.display='none';
	});
};
function quitar2(vid){
	document.getElementById('fondo').style.display='block';
	$.get("php/quitar.php", { id_producto: vid },
		 function(){
    $("#cooler_contenido").load("php/vercarrito.php");
	$("#misionvision").load("php/vercarrito2.php");
	document.getElementById('fondo').style.display='none';
	});
};
function auth(){
	$.getJSON("php/auth.php?"+$("#form3").serialize(), function(data){
		if (data.id_usuario != undefined){
			document.getElementById('bienvenidav').style.display='none';
			document.getElementById('bienvenida').style.display='block';
			document.getElementById('visitante').style.display='none';
			document.getElementById('datos').style.display='none';
			$("#nombreu").html(data.nombre);
			$("#distritou").html(data.distrito);
			$("#dniu").html(data.dni);
			$("#emailu").html(data.email);
		} else {
			document.getElementById('vmensaje').style.display='block';
        	document.getElementById('fondo').style.display='block';
		}
	});	
};
function out(){
	$.ajax({
  		url: "php/salir.php",
 		async: false
 	});	
	loader();
};
function pressedKey()
{
   if(event.keyCode==13)
   {
	  if (event.preventDefault) event.preventDefault();
	  if (event.stopPropagation) event.stopPropagation();
	  auth();
   }
}
function editardatos(){
	document.getElementById('fondo').style.display='block';
	$("#editardatos").load("php/editardatos.php", function(){
			document.getElementById('editardatos').style.display='block';
		});
}

function enviarcontrasena(){
	document.getElementById('fondo').style.display='block';
	$("#solicitar_pass").load("enviarcontrasena.html", function(){
			document.getElementById('solicitar_pass').style.display='block';
		});
}