/*	This script is to print a given web page. 
	The web page will be opened in a new window, then be hidden behind the currrent window,
	printed and then closed after 8 seconds. 
	
	The function parameter supplied is the web page to open complete with its parameters.
*/
function printWebPage(webPage)
{
printWindow = window.open(webPage, "printWin", "width=400,height=200,left=200,top=100");
self.focus();
printWindow.print();
setTimeout('printWindow.close()',8000);
}
