document.observe('dom:loaded', function() {
	$$('div#wrap a.pdf').each(function(nw) {
		Event.observe(nw, 'click', function(event) {
			var newWindow = window.open(nw.getAttribute('href'), 'pdf');
			newWindow.focus();
			Event.stop(event);
			return false;			
	}); });
})
