function pprint(elmId)
	{
		if (!elmId) {
			elmId = "print_version";
		}
		if (document.getElementById != null)
		{
			var html = '<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\">\n<HEAD>\n';
	
			if (document.getElementsByTagName != null)
			{
				var headTags = document.getElementsByTagName("head");
				if (headTags.length > 0)
					html += headTags[0].innerHTML;
			}
	
			html += '\n</HE' + 'AD>\n<BODY class=\"print_page\"><table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" class=\"page\"><tr><td><div class=\"header\"><img src=\"gfx/logo.gif\" alt="" title="" /></div>\n';
	
			var print_versionElem = document.getElementById(elmId);
	
			if (print_versionElem != null)
			{
					html += print_versionElem.innerHTML;
			}
			else
			{
				alert("Could not find the print_version section in the HTML");
				return;
			}
		
			html += '\n<td><tr></table></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("Sorry, the print ready feature is only available in modern browsers.");
		}
	}
