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("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HEAD>\n<BODY>\n';
		html += '<a href="javascript:window.print()"><img src="../graphics/page/print.gif" border="0" /></a><br><br>';
		
		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 width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td valign="top" background="../graphics/page/dotted.gif" bgcolor="#FFFFFF"><img src="../graphics/clear.gif" width="5" height="1" /></td></tr><tr><td valign="top" bgcolor="#FFFFFF"><img src="../graphics/clear.gif" width="5" height="3" /></td></tr><tr><td valign="top" bgcolor="#9A9172"><img src="../graphics/clear.gif" width="5" height="6" /></td></tr><tr><td valign="top" bgcolor="#D4CEBA"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr valign="top"><td width="624" valign="middle" class="footer" id="footer">Copyright NCCER</td><td width="111" align="right"><a href="../index.asp"><img src="../graphics/page/letters.gif" alt="Link to return to NCCER home" width="109" height="31" border="0"></a></td></tr></table></td></tr></table>';
		
		
		
		
		html += '\n</BODY>\n</HTML>';
		
		var printWin = window.open("","printSpecial","width=550,height=400,scrollbars=yes");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		//if (gAutoPrint)
			//printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}