(function () {

	jQuery.fn.newwindow = function (options) {
		
		return this.each(function () {
		
			var $this = jQuery(this);
		
			if ($this) {
			
				$this.click(function () {
				
					window.open(jQuery(this).attr("href"));
					
					return false;			
				
				});
			}		
		});
			
	};
	
})(jQuery);
