function printElement(id)
{
	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;
		} // ByTagName != null
		html += '\n</HEAD>\n\n';
		
		var printReadyElem = document.getElementById(id);
		if (printReadyElem != null)
		{
			html += printReadyElem.innerHTML;
		} // printReadyElem != null
		else
		{
			alert("Could not prepare for printing.");
			return;
		} // else
		html += '\n</BODY>\n</HTML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.print();
		//printWin.close();
	} // ById != null
	else
	{
		alert("The print feature is only available if you are using an browser. Please update your browser.");
	} // else
} // printElement 