function confirmOrder()
	{
	document.getElementById('CheckOutAction').value = 'ConfirmOrder';
	document.getElementById('CheckOutForm').submit();
	}

function showOpenOrder(OrderNo)
	{
	window.location='shop_receipt.con?iOrdid='+OrderNo+'&open=true';
	}

function showClosedOrder(OrderNo)
	{
	window.location='shop_receipt.con?iOrdid='+OrderNo+'&open=false';
	}

function addLine(OrderLineNo)
	{
	document.getElementById('OrderLineNo').value = OrderLineNo;
	document.getElementById('ReceiptForm').submit();
	}

function popitup(url)
	{
	window.open(url,"","width=610px,height=500px,scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no");
	}
