
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<CENTER><TABLE WIDTH=600 BORDER=1 cellpadding=3 bordercolor=#EEDDB9><TR><TD bgcolor=#FFFFFF>\n';
		
		var printReadyElem = document.getElementById("printReady");
		var printReadyBElem = document.getElementById("printReadyB");
		
		if (printReadyElem != null)
		{
			html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
			
		var currentTime = new Date();
        var year = currentTime.getFullYear();	
			
		html += '\n <br>COPYRIGHT &copy; 1996-' + year + ' The Advertising Specialty Institute. All rights reserved.</TD></TR></TABLE><CENTER>\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.");
	}
}