﻿// JScript File

function funcGetObject(id){
    if(typeof( window.innerWidth ) == 'number'){
        return(document.getElementById(id));
    }else{
        if(document.all){
            return(document.all(id));
        }
        if(document.getElementById){
            return(document.getElementById(id));
        }
    }
}

function ShowProcessar(){
    funcGetObject("ctl04_formPanel").style.display = "none";
    funcGetObject("processarDiv").style.display = "block";
}