/**
 * @author Jacek Ciołek <j.ciolek@webnicer.com>
 */
$(function() {
	$("a.external-link-new-window").click(function(e){
		open(this.href);
		return false;
	});
});
