﻿$(document).ready(function () {

    $('.hlPopup').click(function (e) {
        e.preventDefault();
        var url = this.href;
        $('<iframe id="editDialog" frameBorder="0" class="editDialog" width="605px" src="' + url + '" />').dialog({
            modal: true,
            width: 605,
            maxHeight: 500,
            position:['center',100],
            resizable:false,
            title: this.title
        }).width(605).height(500);
    });

});
