﻿$(document).ready(function () {

    $(".popup").click(function () {
        window.open(this.href, 'child', 'location=yes,scrollbars=yes,menubar=yes,resizable=yes,toolbar=yes,status=yes,width=700,height=500');
        return false;
    });

});


