var printWindow;

function closePrintWindow()
{
	if (printWindow != undefined)
	{
		if(!printWindow.closed) 
			try {printWindow.close() } 
			catch(e)
			{ }
	}
}
