
function print_order(int_order) {
	vars = "height=600,width=800,left="+(screen.width/2-(50/2))+",top="+(screen.height/2-(50/2))+",scrollbars=no,toolbar=no,status=no,resizable=yes"
	print_win = window.open('print_order.asp?order='+int_order,'print_win',vars);
	print_win.window.focus();
}

function do_print() {
	self.print();
	//self.close();
	}
