﻿$(document).ready(function() {
    $('A[rel="popup"]').click(function() {
        window.open($(this).attr('href'), "Coupon", "width=700,height=400");
        return false;
    });
});