var gAutoPrint = true;
function processPrint(printMe)
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>\n';

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("printMe");
			if (headTags.length > 0) html += headTags[0].innerHTML;
		}

		html += '\n</HE' + 'AD>\n<BODY>\n';
		var printReadyElem = document.getElementById(printMe);

		if (printReadyElem != null) html += printReadyElem.innerHTML;

		else
		{
			alert("Error, no contents.");
			return;
		}

		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		var printWin = window.open("","processPrint");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		
		if (gAutoPrint) {
			printWin.print();
			printWin.close();
		}
	}
	else alert("Browser not supported.");
}