emailthis = {
	pane: $('<div/>'),
	open: function(subject, body, from) {
		$.blockUI({
			message:	emailthis.pane,
			centerX:	true, 
    		centerY:	true,
			css:		{
				width:	'600px',
				height:	'550px',
				top:	'50%',
    			left:	'50%',
    			margin:	'-275px 0 0 -300px',
    			cursor:	'normal'
			}
		});
		if (! emailthis.pane.html().length) {
			emailthis.pane.load('/emailthis/form/', function() {
				with (emailthis.pane) {
					find('#emailthis_subject').val(subject).change();
					find('#emailthis_body').val(body).change();
					find('#emailthis_from').val(from || '').change();
				}
			});
		}
		return false;
	},
	done: function() {
		alert('Ваше сообщение отправлено, спасибо за использование нашего сервиса');
		$.unblockUI();
	},
	closeDialog: function() {
		$.unblockUI;
	}
}
