﻿$(document).ready(function () {

    $("a[href$=#window]").each(function () {
        $(this).attr("target", "_new").attr("href", $(this).attr("href").replace("#window", ""));
    });


});

