﻿var el_id=0;
var jcasignal=0;

function procesarPaypal(id)
{
  x = document.getElementById("datable").rows[4].cells;
  x[0].innerHTML="<b>Verificando el pago...</b>";


	var opciones = {
		method: 'post',
		//parameters: 'cmd=_notify-synch&tx='+id+'&at=RyBGga-SKsh_4q1HGv8_-_qc7xRxvIJXFAL-85b0D6Qpj9dJ_1-yM_iG_yi',
		parameters: 'tx='+id,

		// función a llamar cuando reciba la respuesta
		onSuccess: function(t) {
		  //datos = eval(t.responseText);
		  //procesar_bl3(datos[0]);
		  procesarPaypal2(t.responseText);
		}
	}

        sitio='http://www.jca.com.ar/include_jca/paypal.php';
        //sitio='https://www.paypal.com/cgi-bin/webscr';

	new Ajax.Request(sitio, opciones);


  ti=setTimeout("procesarPaypal3('t')",30000);
}

function procesarPaypal2(texto)
{
  clearTimeout(ti);

  x = document.getElementById("datable").rows[4].cells;
  x[0].innerHTML="<b>"+texto+"</b>";
}

function procesarPaypal3(texto)
{
  clearTimeout(ti);

  x = document.getElementById("datable").rows[4].cells;
  x[0].innerHTML="<b>Fallo !</b>";
}


