if (window.print)
	{
		if (document.getElementById && document.createTextNode)
		{
			var navigationDiv = document.getElementById("leftColumn");
			if (navigationDiv != null)
			{
				var printLink = document.createElement("a");
				printLink.href = "javascript:window.print();";
				var printText = document.createTextNode("Print this page");
				var printDiv = document.createElement("div");
				printDiv.id = "print";
				printLink.appendChild(printText);				
				printDiv.appendChild(printLink);
				navigationDiv.appendChild(printDiv);
			}
		}
	}
