﻿// JScript File
//------------------------------------------------------------------------------------------------------------------------------------------------
function fnDisplayLargeImage(bitShow, strPcode, strURL){
    
     
    try{
        if(bitShow == '1'){
            //document.getElementById(strPcode).style.visibility = 'visible';
            //document.getElementById(strPcode).style.height = '';
            //document.getElementById(strPcode).style.display = 'none';
        }
        
        if(bitShow == '0'){
            //document.getElementById(strPcode).style.visibility = 'hidden';
            //document.getElementById(strPcode).style.height = 1;
            //document.getElementById(strPcode).style.display = '';
        }    
        
        document.getElementById(strPcode).src = strURL;
    }catch(e){
        //error displaying the large image
    }


}//end function fnDisplayLargeImage


//------------------------------------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------------------------------------
