var order_show = function(pid)
{	
	var href = "?load_block=content_order&pid="+pid;
	var w = 460;
	var h = 710;
	var l = (screen.width-w)/2;
	var t = (screen.height-h)/2;
	var str="fullscreen=no,directories=no,location=no,resizable=yes,scrollbars=no,status=no,toolbar=no,width=" + w + ",height=" + h + ",left="+l+",top="+t;
	var win = window.open(href, "orderPopup", str);
	win.window.focus();

}

