function carica_storia() {
    var req = new Request.JSON({
            method: 'post',
            url: url_storia,
            secure: true,
            onSuccess: mostra_storia
        }).send();
}

function mostra_storia(originalRequest) {

  var result = originalRequest;

  if (/^debug:/i.test(result.messaggio)) { alert(result.messaggio); return; }

  $('mycontainer').innerHTML = '';
  
  var html = '<strong>LA STORIA DELLA SCUOLA</strong>';
  if (result.errore == 0) {
    html += unesc(result.storia.scheda);  
   $('mycontainer').innerHTML = html;
  } else {
    alert('Non sono riuscito a caricare il storia:'+"\n"+result.messaggio);
  }

}