function doConfirm(item_code, qty) {
	var code = item_code;
	var qty = qty;
	confirm = window.open("http://www.christianslides.com/order_confirm.php?code="+code+"&qty="+qty,"", "width=300, height=220, left = 362, top = 274, resizable=0, statusbar=0, scrollbars=0, menubar=0");
	var xPos = (screen.width / 2) - 150;
	var yPos = (screen.height / 2) - 110;
	confirm.moveTo(xPos,yPos);
}
