$(document).ready(function() {
    $("a[rel='popup']").click(function() {
        var features = "height=260,width=520,resizable=1,scrollbars=0,location=0";
        window.open(this.href, 'popup', features);
        return false;
    });
});


