(function($){$.fn.newWindow=function(options){var defaults={titleText:'Link opens in a new window'};var options=$.extend(defaults,options);return this.each(function(){var obj=$(this);if(options.titleText){if(obj.attr('title')){var newTitle=obj.attr('title')+' ('+options.titleText+')'}else{var newTitle=options.titleText};obj.attr('title',newTitle)};obj.click(function(event){event.preventDefault();var newBlankWindow=window.open(obj.attr('href'),'_blank');newBlankWindow.focus()})})}})(jQuery);
