
if (document.getElementById && document.getElementById('print-link')) {

	function createElement(element) {

		if (typeof document.createElementNS != 'undefined') {

			return document.createElementNS('http://www.w3.org/1999/xhtml', element);

		}

		if (typeof document.createElement != 'undefined') {

			return document.createElement(element);

		}

		return false;

	}

	var a = createElement('a');

	a.href = 'javascript:window.print();';

	a.appendChild( document.createTextNode("Print this page") );

	document.getElementById('print-link').appendChild(a);

}
