var gAutoPrint = true; // Flag for whether or not to automatically call the print function
function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<html>\n<head>\n';
		if (document.getElementsByTagName != null)
		{
 			var headTags = document.getElementsByTagName("title");
			if (headTags.length > 0) {
				html += '<title>';
				html += headTags[0].innerHTML;
				html += '</ti' +'tle>\n';			
			}
			html += '<link href="/css/printreadystyle.css" rel="stylesheet" type="text/css">' + "\n";
		}
		html += '</he' + 'ad>\n<body>\n';
		var printReadyElem = document.getElementById("printReady");
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
		html += '<table cellspacing=0 cellpadding=5 border=0 width="100%"><tr>' + "\n" +
'<td valign="top" width="25%"><a href="javascript:window.close()">Close this window</a></td>' + "\n" +
'<td valign="top" align="center" width="50%">http://www.robinsonsrats.co.uk<br>Robinsons Rats.<br>Broad Oak Road Canterbury Kent CT2 7QG<br>Phone: 01227 454366&nbsp;&nbsp;|&nbsp;&nbsp;Fax: 01227 454726</td><td valign="top" align="right" width="25%">Designed &amp; Hosted by<br><a href="http://www.cantweb.co.uk/" target="_blank">Canterbury Web Services</a> &copy; 2005-2006</td>' + "\n" +
'</tr></table>' + "\n";
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print page feature is only available in modern browsers.");
	}
}

