function show_acquisto() {
  return false;
}

$(function() {
    title = "scegli la tua versione di " + $("#scelta_acquisto .title").html(),
    $("#scelta_acquisto").dialog(
      {
        autoOpen: false,
        width: 500,
        title: title
      }
    );

    $("#acquisto").click(
      function() {
        $("#scelta_acquisto").dialog('open');
      });
  });

