$(document).ready(function() {
    $("#divDialog").dialog({ title: "Share to", autoOpen: false, modal: true, draggable: false, resizable: false, width: 320, height: 240 });
});

function Share_Click(Type) {
    Syrupie.WWW.Services.Dialog.ShareExternal(Type, document.getElementById('inputShareID').value, document.getElementById('textareaExternalRecipient').value);
    $("#divDialog").dialog("close");
}

function Cancel_Click() {
    $("#divDialog").dialog("close");
}

function ShowShareDialog(Type, ShareID) {
    document.getElementById('inputShareID').value = ShareID;
    document.getElementById('aShareInternal').href = '/message.aspx?share&type=' + Type.toLowerCase() + '&id=' + ShareID;
    $("#divDialog").dialog("open");
}
