function show_item(link, title){
	
	$.ajax({
	   type: 'POST',
	   url: link,
	   data: 'ajax=1',
	   success: function(html){
	   	
	   		$("#show_item").html(html);
			$("#show_item").dialog({
				modal: true,
				title: title,
				height: 700,
				width: 800,
				buttons: {
					Ok: function() {
						$(this).dialog('close');
					},
					'Заказать': function() {
						window.location.href='/order/';
					}
				}
			});
	   }
	 });
}
