﻿/// <reference path="jquery-1.4.4.min.js" />

$(function () {
    $('.request-info').click(function () {
        var src = "/request-info/exclusive/" + $(this).attr('schoolID');
        $.modal('<iframe src="' + src + '" height="600" width="595" scrolling="auto" style="border:0">', {
            containerCss: {
                backgroundColor: "#fff",
                borderColor: "#fff",
                height: 610,
                padding: 0,
                width: 595
            },
            overlayClose: false,
            modal: true
        });
    });
});
