
		function fnMensajeProcesando() 
		{
				
				loading.style.display = 'block';				
				
				return true;				
		}
		
		function fnCerrarMensajeProcesando(elementFocus) 
		{	
				loading.style.display = 'none';
				
				return true;
		}
		
		
// DisplayImg
// Función general para mosrar u ocultar Imagenes.
 function DisplayImg(src,imgId,divId,posX,posY,booleano)
  {
  
  var disp;
 
  if(booleano)
    disp ='block';
  else  
    disp = 'none'

	
  if (String(posX)!= "undefined")
      document.all[divId].style.left	 = posX + 'px';
   
  if (String(posY)!= "undefined")
       document.all[divId].style.top	 = posY + 'px';
 
 
      
  document.all[imgId].src			 = src;
  document.all[divId].style.display	 = disp;
  document.all[divId].style.overflow = "hidden";
  document.all["Form1"].disabled	 = booleano;
  }
		
