"use strict";
$(document).ready(function()
{
  $(".confirm").live("click", function(e)
  {
    e.preventDefault();
    var tarURL  = $(this).attr("href") ? $(this).attr("href") : "";
    var tarFRM  = $(this).attr("form") ? $(this).attr("form") : "";
    var data = $(this).metadata();
    $("#dialog-confirm").dialog("destroy");
    $("p#dialog-confirm-message").html(data.msg);
    $("#dialog-confirm").dialog({
        resizable: false,
        modal: true,
        overlay: {
            backgroundColor: "#000",
            opacity: 0.9
        },
        title: data.title,
         buttons: [ {
          text: data.btnYes,
          click: function() {
            $(this).dialog("close");
            if(tarURL != "")
            {
              window.location.href = tarURL;
            }
            else
            {
              $(tarFRM).submit();
            }
          }
        },
        {
          text: data.btnNo,
          click: function() {
            $(this).dialog("close");
          }
        }
        ]
    });
  });
});
