function modalmailbox(href, title, type, query)
{
//  if(jQuery('#dialog').dialog( 'isOpen' ))
  //   jQuery('#dialog').dialog('close');

  jQuery('#dialog').dialog('option',{ buttons: { "Закрыть": function() { jQuery(this).dialog("close"); } } });
  jQuery('#dialog').dialog('option', 'title', title);

  if (type == 'post') { 
    jQuery.post(href, query, function(data){
      jQuery("#dialog").html(data);
    });
  } else{

          jQuery("#dialog").html("<div style='text-align: center;'><img src='css/indicator.gif' alt=''/></div>");

          jQuery.get(href, {}, function(data){
            jQuery("#dialog").empty();
            jQuery("#dialog").append(data);
          });
        }
  jQuery('#dialog').dialog('open');
return false;
}
jQuery(function() {
		
		jQuery("#dialog").dialog({
			bgiframe: true,
			autoOpen: false,
			height: 'auto', width: 600, position: 'top',
			minWidth: 600,
			modal: true,
hide: 'blind',
show: 'blind',
resizable: 'false',
                        overlay: { backgroundColor: '#ffffff', opacity: 0.5},
			buttons: {
				'Закрыть': function() {
					jQuery(this).dialog('close');
				}
			},
			close: function() { ;
			}
		});
		
});

