﻿$(document).ready(function () {

    // Attach click handler to popup links
    $(".popup").click(function (evt) {
        evt.preventDefault();
        window.open(this.getAttribute("href"), "_blank");
    });

});
