$(document).ready(function() {
	$("body").click(function () {
		window.close();
	});
});

function openWindow(type, trip, page)
{
	window.open("/php/print.php?type=" + type + "&trip=" + trip + "&page=" + page,  "","location=1,status=1,scrollbars=1, width=700,height=550");
}

