﻿$(function () {
    $("#rightCol a, #smallImages a").each(function (index) {
        var curLink = $(this).attr("href")
        if (curLink.indexOf("/maps/default.aspx?etype=") != -1 || curLink.indexOf("%2fmaps%2fdefault.aspx%3fetype%3d") != -1) {
            $(this).click(function () {
                return popMap(curLink);
            });
        }
    });
});

function popMap(url){
    window.open(url, '', 'width=980,height=815');
    return false;
}
