Note: This story was dynamically reformatted for online reading convenience. function show_dialog(in_title, filename) { $( "#dialog" ).html( "<P style='font-size: 10pt;'>Please choose the e-book format to read <b>" + in_title + "</b>.</p>" + "<p style='font-size: 10pt;'>Choose <b>MOBI</b> for <i>Kindle</i> and <i>MobiPocket</i>.</p>" + "<p style='font-size: 10pt;'>Choose <b>LIT</b> for <i>MSReader</i>.</P>" + "<p style='font-size: 10pt;'>Choose <b>EPUB</b> for almost everything else including <i>iBooks</i> and <i>Sony Reader</i>.</p>"); $(function() { $( "#dialog" ).dialog({title: in_title, modal: true, width: 450, height: 300, buttons: { EPUB: function(){ location.href = "e-books/" + filename + ".epub"; }, MOBI: function(){ location.href = "e-books/" + filename + ".mobi"; }, LIT: function(){ location.href = "e-books/" + filename + ".lit"; }, Cancel : function(){ $( this ).dialog( "close" ); } } }); }); }