﻿$(function() {
    setUpExternal();
});

function setUpExternal() {
    $('a[rel="external"]').off('click').on('click', function() {
    	var popup = window.open(this.href, this.title, 'width=740, height=700,scrollbars=1');
    	popup.focus();
    	return false;
    });
};
