<!--
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height, menubar, scrollbars, resizable){
	if(popUpWin){
		if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar='+menubar+',scrollbars='+scrollbars+',resizable='+resizable+',copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function printorder(orderid, type){
	w=660;
	h=500;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	//images = popUpWindow('/entry/view.php?downloadid='+downloadid+'&type='+type+'&name='+name, LeftPosition, TopPosition, w, h, 'no', 'yes');
	popUpWindow('/cart/printorder.php?orderid='+orderid+"&type="+type, LeftPosition, TopPosition, w, h, "yes", "yes", "yes");
}
//-->
