//jQuery on dom ready
$(function(){	
	// is there any hyperlinks to open in a new window
	$('a.newwintrue').click(function(e) {
		e.preventDefault();
		window.open($(this).attr('href'));
	});
})
