﻿function OpenPrinterFriendlyWindow()
{
	var oPrinterWindow;
	oPrinterWindow = window.open(printerFriendlyUrl, 'PrinterWindow', 'width=710,height=450,scrollbars=yes,toolbar=yes');
	if (!((browserName == "IE") && (parseInt(browserVersion) <= 3)))
	{
		oPrinterWindow.focus();
	}
}

function printWHPage() {
	if (window.print) {
		window.print();
	
		// ******************************* DO NOT REMOVE ****************************************
		// Add the print event to the webabacus arrays so that they get posted back to the
		// server. Try first as the function may not be available
		if(browserJavascript >= '1.3') {
			setWACustomVars('eventtype', 'printWindow', true, true);
		}
		//***************************************************************************************
	
	} else {
		alert("To print this page, please use your browser's Print button");
	}
}


