var dialog = new function(){

  this.generic = function( title, id ){
    var dlg = $.DialogEx({
      content: {
        id:     '#dialog-'+id,
        title:  title,
        URL:    '/include/dialogs/'+id+'.html'
      }
    });
    dlg.dialog('open');
  };

  this.WC4      = function(){ this.generic('Coupon Code Disclaimer', 'WC4'     ); }
  this.FREESHIP = function(){ this.generic('Coupon Code Disclaimer', 'FREESHIP'); }
  this.TPO      = function(){ this.generic('Discount Disclaimer',    'TPO'     ); }
  this.JOLLY    = function(){ this.generic('Discount Disclaimer',    'JOLLY'     ); }

}