

/** 
 * load the JS needed for the print this page links
 */
function printLink() {
	if(document.getElementById('printLink')) {
		document.getElementById('printLink').onclick = function() { 
			window.print();
			return false;
		}
	}
	
}