// JavaScript Document
function showPrint(URL) {
	var w = 760;
	var h = 500;
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	
	windowprops = "height="+h+",width="+w+",top="+ wint +",left="+ winl +","
	+ "location=no,status=no,menubar=no,directories=no,toolbar=no,resizable=yes,scrollbars=yes";
	window.open(URL, '', windowprops);
}
