$(document).ready(function(){

	$("#dialog-send").hide();

	$("#open-dialog-send").click(function () {
		$("#dialog-send").show();
		$("#dialog-send").dialog({
			modal: true,
			resizable:false,
			width:360,
			height:450,
			overlay: {
				opacity: 0.2,
				background: "black"
			}
		});
	});
	
	$("#cancel").click(function() {
		$("#dialog-send").dialog("close");
	});
});
