$(document).ready(function(){
	$("a.iconPrint").click(function() {
		
		$(this).blur();
		print();
		return false;
	});
	
});