var g_existe_funciones = true;
var vtaListado_infoesta = null;
var g_sel_formato = false;
var g_BotonP = '';
function ver_estadistica(as_documento)
{
  var el_scr_vta = "";
  var el_menubar = 'yes';
  if (vtaListado_infoesta != null)
  {
    vtaListado_infoesta.close();
  }
  vtaListado_infoesta = null;
  el_scr_vta = as_documento;
  el_menubar = 'yes';
  vtaListado_infoesta = window.open(el_scr_vta,'vtaListado_infoesta', 'width=790,height=480,scrollbars=yes,status=no,menubar='+el_menubar+',toolbar=no,left=0,top=0,resizable=yes,fullscreen=0,channelmode=0');
  vtaListado_infoesta.focus();
}
function ver_tb_comentario(){
 //asignación del tamaño de los iconos
 //Mostramos el cuadro del comentario
  if (document.getElementById){
   document.getElementById("obj_E1").height = '31';
   document.getElementById("obj_E2").height = '31';
   document.getElementById("obj_E1").className='mostrar';
   document.getElementById("obj_E2").className='mostrar'; 
   document.getElementById("obj_E_sel").className='mostrar_sel';
  }else{
   if (document.all){
    eval("document.all.obj_E1.height = '31';");
    eval("document.all.obj_E2.height = '31';");
    eval("document.all.obj_E1.className='mostrar';");      
    eval("document.all.obj_E2.className='mostrar';");   
    eval("document.all.obj_E_sel.className='mostrar_sel';");      
   }else{
    eval("document.obj_E1.height = '31';");
    eval("document.obj_E2.height = '31';");
    eval("document.obj_E1.className='mostrar';");      
    eval("document.obj_E2.className='mostrar';");   
    eval("document.obj_E_sel.className='mostrar_sel';");      
   }   
  }
}
function ver_fn(as_id_fn){
 //Mostramos las fuentes y notas explicativas
 if (document.getElementById){
  document.getElementById(as_id_fn).className='mostrar';
 }else{
  if (document.all){
   eval("document.all."+as_id_fn+".className='mostrar';");
  }else{
   eval("document."+as_id_fn+".className='mostrar';");
  }
 }
}
function ver_BotonP(as_id,as_BotonP){
 //Mostramos el botón de IMPRIMIR
 if (document.getElementById){
  document.getElementById(as_id).innerHTML = as_BotonP;
 }else{
  if (document.all){
   eval("document.all."+as_id+".innerHTML='"+as_BotonP+"';");
  }else{
   eval("document."+as_id+".innerHTML='"+as_BotonP+"';");
  }
 }
}
function ver_sel_formato(){
	if (g_sel_formato) {
	 ver_tb_comentario();	 		
	}
	ver_BotonP('FormP',g_BotonP);
}

