function getHtml (scelta) {
    dojo.xhrGet ({
    url: 'scegli.asp',
    load: function (data) {
      window.open(data,'PopPup','fullscreen');  
    },
    error: function (data) {
      console.error('Error: ', data);
    }
  });
}


