
	function OpenOrder(url, w, h) {
		Neww = (screen.width - w) / 2;
		Newh = (screen.height - h) / 2;
		Pro = 'top=' +Neww+ ',left=' +Newh;
		Profer = 'height=' +h+ ',width=' +w+ ',top=' +Neww+ ',left=' +Newh;
		window.open(url, '', Profer);

	}
	function View(src){
		window.open(src, "newWin", "scrollbars=no, toolbar=no, location=no, status=no, menubar=no, left=40, top=40");
	}

