<!--// 

/* Script to ensure valid passing of page reference to the print page function */
/*	Author: OJ - ChicagoEtools.com - 07/03/2003 */

function openPrintPage() {
	
	if (location.href.indexOf('#') != -1) {
		var sHrefSplit = location.href.split('#');
		var sLink = sHrefSplit[0];
		}
	else
		var sLink = location.href;
				
	if (sLink.indexOf('?') == -1) {
		var x = '?';
		}
	else
		var x = '&';
	window.open(sLink+x+'print=true','newWin','width=630,height=500,scrollbars=yes');
	}
//-->