$(document).ready(function(){
	$('#addchart').click(function(){
		var idpro = $('#idpro').val();
		$.ajax({
			type:"POST",
			url:"addchart.php",
			data:"id_pro=" + idpro,
			success:function(resp){
				document.location.href = 'agradece.php?id=' + idpro;
			}
		});
		return false;
	});
	
	$('#btnenvped').click(function(){
		var em = $('#txtem').val();
		var nom = $('#txtnom').val();
		var ruc = $('#txtruc').val();
		var mail = $('#txtmail').val();
		var tel = $('#txttelefono').val();
		var dir = $('#txtdir').val();
		var ciu = $('#txtciu').val();
		var pais = $('#txtpais').val();
		$.ajax({
			type:"POST",
			url:"envmail.php",
			data:"em=" + em + "&nom=" + nom + "&ruc=" + ruc + "&mail=" + mail + "&tel=" + tel + "&dir=" + dir + "&ciu=" + ciu + "&pais=" + pais,
			success:function(resp){
				var jobj = eval("(" + resp + ")");
				alert(jobj.msg);
				if(jobj.error == 0){
					window.location.href='productos.php';
				}
			}
		});
	});
});



