var req = new Request.JSON({
            method: 'post',
            url: url_info,
            secure: true,
            onSuccess: mostra_info
        }).send();

function mostra_info(originalRequest) {
    if (originalRequest.errore == 0) {
      var html = '<strong>INFO</strong><br>'+originalRequest.info.scheda;
      $('mycontainer').innerHTML = html;
    } else {
      alert('Non sono riuscito a caricare le info:'+"\n"+originalRequest.messaggio);
    }
}

