﻿function reportPopup(title, width, height, url, xml, zonkey)
{
    var rptWindow=managedPopup('',title,width,height);
    rptWindow.document.writeln('<html><body>');
    rptWindow.document.writeln('<center>');
    rptWindow.document.writeln('<img src=\"../images/processing.gif\" border=0><br>');
    rptWindow.document.writeln('<b>Your request is being processed.  Please wait.</b><br><br>');
    rptWindow.document.writeln('</center>');
    
    rptWindow.document.writeln('<form action="' + url + '" method="post" ID="frmRpt">');
    rptWindow.document.writeln('<input type="hidden" name="xmlRequest" id="xmlRequest" value="' + xml + '" />');
    rptWindow.document.writeln('<input type="hidden" name="Zonkey" id="Zonkey" value="' + zonkey + '" />');
    rptWindow.document.writeln('<script language=\"javascript\" defer=\"defer\">frmRpt.submit();<\/script></body></html>');
    rptWindow.document.writeln('</form>');
    rptWindow.document.focus();
}
function managedPopup(url,winname,height,width)
{
    var winl=(screen.width-width)/2;
    var wint=(screen.height-height)/2;
    var scroll='yes';windowOptions='height='+height+',width='+width+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,location=no,directories=no,status=yes,menubar=no,copyhistory=yes,resizable=yes';
    return window.open(url,winname,windowOptions);
}
window.onbeforeunload = function () {
    document.getElementById('ContentDiv').style.display='none';
    document.getElementById('ProcessingDiv').style.display='';
}