function Confirm_register(selector, title, message) {
  jQuery(selector).bind('click', function(event) {
    event.preventDefault();
    jQuery("#confirmation").dialog({    
      modal: true,
      title: title,
      resizeable: false,
      buttons: {
        "No" : function() { jQuery(this).dialog("close"); },
        "Yes": function() { jQuery(this).dialog("close"); window.location.href = event.currentTarget.href}
      }
    }).html(message).dialog("open");
  });
}
