﻿var theForm;
jQuery(document).ready(
    function() {
        if (!window.parent.OpenPage) {
            window.top.document.location.href = refPageQS + escape(document.location.href);
        } else {
            window.parent.OpenPage(document, window);
            jQuery(window).unload(function() { window.parent.ClosePage(false); });
            theForm = document.forms['aspnetForm'];
            if (!theForm) {
                theForm = document.aspnetForm;
            }
        }
    });