    $(document).ready(function() {
    	$('a.print').click(function() {
    		href = document.location.href.split('#')[0];
    		href += href.indexOf('?')>0?'&print':'?print';
    		window.open(href,'_blank','toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=700, height=600')
    	})
    });  