(function() {

var template = ['<div class="overlay" style="display: none;">',

  '<div style="text-align: center; padding: 5px 0;">',
    '<a class="button" href="/login?return_url='+ escape(window.location) +'">Login</a>',
  '</div>',
  '<hr/>',
  '<p>There are dozens of benefits for members of the BMW Car Club of America. This is just one.</p>',
  '<div style="width: 300px; margin: 10px auto; padding: 5px 0;">',
    '<a style="float:right;" href="https://myaccount.bmwcca.org/PortalTools/NewUser/EmailCheck.cfm" class="button-small">Join Now</a>',
    '<a href="/membershipbenefits" class="button-small">Learn More</a>',
  '</div>',
'</div>'].join('');

this.non_member_dialog = function(msg) {
  var dlg = $(template);
  dlg.dialog({
    modal: true,
    draggable: false,
    resizable: false,
    closeOnEscape: false,
    width: 335
  });
  if(msg) {
    dlg.prepend('<p>'+ msg +'</p>');
  }
};

})();

/*
$(document).ready(function() {
  make_login_dialog();
});
*/


