function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>\n<script>\nfunction delayedPrint(){\nprint()\nsetTimeout("self.close()",1000)\n}\n</script>\n';

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HE' + 'AD>\n<BODY onload=delayedPrint()>\n<TABLE WIDTH=100% BORDER=0 cellpadding=3><TR><TD>\n';
		
		var printReadyElem = document.getElementById("printReady");
		var printReadyBElem = document.getElementById("printReadyB");
		
		if (printReadyBElem != null)
		{
			html += printReadyBElem.innerHTML;
		}
		else
		{
			if (printReadyElem != null)
			{
				html += printReadyElem.innerHTML;
			}
			else
			{
				alert("Could not find the printReady section in the HTML");
				return;
			}
		}
		
		var now = new Date();
		var year = now.getFullYear();	
		html += '\n <p align=center>COPYRIGHT &copy; 1996-' + year + ' The Advertising Specialty Institute. All rights reserved.</p></TD></TR></TABLE>\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
	}
	else
	{
		alert("Sorry, the Printer Friendly feature is only available in modern browsers.");
	}
}