
	<!--

	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)
			{
				// **** I commented this out so I could use a print style sheet ****
				//var headTags = document.getElementsByTagName("head");
				//if (headTags.length > 0)
					//html += headTags[0].innerHTML;
				html += '<LINK href="inc\/ilearn_printablestyles.css" type=text\/css rel=stylesheet>';
			}
			
			html += '\n</HE' + 'AD>\n<BODY>\n';
			
			var printReadyElem = document.getElementById("printReady");
			
			if (printReadyElem != null)
			{
				// **** I added the following line to put a header on the printable page ****
					html += '<img src="images\/logo.gif" width="98" height="21" border="0" alt="logo" style="margin-bottom: 4px;">'
					html += printReadyElem.innerHTML;
			}
			else
			{
				alert("Could not find the printReady section in the HTML");
				return;
			}
				
			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("This print ready feature is only available in IE 5.x browsers and up.");
		}
	}
	
	
	// -->	