﻿/*************************************************************************************
 *                                                                                   *
 *                      Classe que controla a página footer.ascx                     *
 *                                                                                   *
 ************************************************************************************/
 
 function cFooter()
    {
        //Método que Exibe o Modal.
        this.showModal = function(strID, strWidth, strHeigth)
            {
                $.blockUI({message: $('#' + strID + ''), 
                           css: { top:  ($(window).height() - strHeigth) /2 + 'px', 
                                  left: ($(window).width() - strWidth) /2 + 'px',
                                  width: strWidth}});
            }
            
        //Método que Esconde o Modal.
        this.hideModal = function()
            {
               $.unblockUI(); 
            }
            
        //Método que abre PopUp.
        this.opePopUp = function(strUrl)
            {
                //Redimensiona o Pop-Up.
                var intLeft = (window.screen.width - 1075) / 2;
                var intTop = (window.screen.height - 870) / 2;
                
                //Chama a Página de Impressão
                var objWindow = window.open(strUrl,null,"left=" + intLeft + ",top=" + intTop + ",height=768,width=1024,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes");
            }                   
    }    