$(document).ready(function(){
    /*
     *  When DOM is loaded.
     */
	// нажатие на кнопку "заказать"
	$(".order").click(function(){
		window.open('/order/id:'+$(this).attr('data-id')+'/table:'+$(this).attr('data-table')+'/type:'+$(this).attr('data-type')+'/', 'order_window', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=800,left = 240,top = 100');
		return false;
	});
});

