		var seg = 100;
		var fundo;
		var DIVLoadInterna;
		var tblcorpo;

		function abreInformativo()
		{
			try
			{				
				fundo = document.getElementById("fundodiv");
				tblcorpo = document.getElementById("tblcorpo");
				DIVLoadInterna = document.getElementById("DIVLoadInterna");
				
				var posEsquerda = parseInt(parseInt(window.screen.availWidth)/2);
				var posCima = parseInt(parseInt(window.screen.availHeight)/2);			
				
				if (fundo ==null)
				{					
					return;			
				}
				
				fundo.style.filter = 'alpha(opacity=80)';
				fundo.style.display = 'block';
				tblcorpo.style.display = 'none';
				
				fctSelects('none');				
				DIVLoadInterna.style.top = (posCima - 250) - 100;
				DIVLoadInterna.style.left = (posEsquerda - 350);
				DIVLoadInterna.style.display = 'block';
				DIVLoadInterna.style.filter = 'alpha(opacity=100)';		
				
				//window.setTimeout("fechaInformativo()", 1000 * 10);
			}
			catch(e)
			{alert(e.message);}	
		}
		///////////////////////*****
		function fechaInformativo()
		{
			/*seg = seg - 10;
			
			DIVLoadInterna.style.filter = 'alpha(opacity='+ seg +')';	
			fundo.style.filter = 'alpha(opacity='+ seg +')';
			
			if (seg <=0)
			{
			*/
				fundo.style.filter = 'alpha(opacity=80)';
				fundo.style.display = 'none';
				DIVLoadInterna.style.display = 'none';
				DIVLoadInterna.style.filter = 'alpha(opacity=100)';		
				tblcorpo.style.display = 'block';
				fctSelects('');
				seg = 100;
			/*}
			else
			{
				window.setTimeout("fechaInformativo()",1);
			}*/
		}
		///////////////////////*****
		function fctSelects(flag)
		{
			//return;
			//var select_array = document.all.tags("select");
			var select_array = document.getElementsByTagName("select");
			var len_array = select_array.length;
			
			var j = len_array - 1;
			
			for (var i =0; i<=j; i++)
			{
				select_array[i].style.display = flag;
			}
		}		