<!--
var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printSpecial()
{
	var html = '<html>\n<head>\n';
	html += '<meta http-equiv="imagetoolbar" content="no">\n';
	html += '<style type="text/css">\n';
	html += 'body {font-family:Arial, Verdana, Helvetica, sans-serif;}\n';
	html += 'img {border-style:none}\n';
	html += '</style>\n';
	html += '<script >\n';
	html += 'function antispamemail(emailserver, emailname, emaildesc, emailsubj) {\n';
	html += 'document.write("");';
	html += '}\n';
	html += '</script>\n';
	html += '\n</head>\n<body>\n';
	var contentElem = document.getElementById("printReady");
	if (contentElem != null)
		{
			html += contentElem.innerHTML;
 		}
	else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}

	html += '<div align="right">&copy; CultusInn</div>\n';
	html += '\n</body>\n</html>';
	var printWin = window.open("","printSpecial");
	printWin.document.open();
	printWin.document.write(html);
	printWin.document.close();
	if (gAutoPrint)
		printWin.print();
}
-->


