mtLibAddEvent(
	function(){
		if(!document.getElementById) return;
		printpage.init();
	}
);

var printpage = {
	init : function(){
		var oPrintPage = document.getElementById("printPage");
		if(oPrintPage){
			oPrintPage.onclick = function(){
				window.print();
				return false;
			};
		};
  	}
};

