$(function(){$("#message-compose-box").dialog({bgiframe:true,autoOpen:false,height:180,width:360,modal:true,resizable:false,title:"Send a message to this user regarding the item",buttons:{"Send Message":function(){$("#embed-message").html("Sending...");$("#compose_form").submit()},Cancel:function(){$(this).dialog("close")}},close:function(){}});function a(b){if(b.success!=true){$("#embed-message").html("An error occured sending your message, please try again later.")}else{$("#embed-message").html("Sent!");setTimeout("closeBox()",1000)}}$("#compose_form").ajaxForm({success:a,dataType:"json"})});function closeBox(){$("#embed-response").val("");$("#message-compose-box").dialog("close")}function createEvent(a){$(a).click(function(){$("#message-compose-box").dialog("open")})};