
<!-- inicio

function abrirventanaayuda(pagina,ventana)
{
if (navigator.appName== "Netscape" && parseInt(navigator.appVersion) >= 3 ) 
          {
              // ---- netscape
           window.open (pagina, ventana, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=-0,width=350,height=400');
          } 
       else if (navigator.appName == "Microsoft Internet Explorer" && parseFloat( navigator.appVersion ) >= 3.01 )           {
              // ---- explorer
           window.open (pagina, ventana, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=-0,width=350,height=400');
          } 
										else
            {
            pagina ='' +  
          
          	document.write(pagina); 
          	document.close();
            }
}


function ampliarSec01(str){  

        ampliacion = "../../adminfotos/a" + str + ".jpg"


	var pagina ="" +   
        "    <TITLE>Zoom</TITLE>  "+
        "    <BODY LEFTMARGIN='0' TOPMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'  "+
        "    ONBLUR='self.focus()' BGCOLOR='#000000'>  "+
        "    <CENTER>  "+
        "    <TABLE ALIGN='LEFT' CELLPADDING='0' CELLSPACING='0' HSPACE='0' VSPACE='0' BORDER='0'>  "+
        "      <TR>  "+
        "        <TD ALIGN='CENTER' VALIGN='TOP' BACKGROUND='../../adminfotos/cargando.gif' > "+
        "      <A HREF='javascript:window.close();'>"+
        "<IMG SRC="+ampliacion+" ALT='Retourner' WIDTH='400' HEIGHT='400' BORDER='0' NAME='imagenamplia'>" +        
        "</A>"+
        "        </TD>  "+
        "      </TR>  "+
        "    </TABLE>  "+
        "    </CENTER>  "+
        "  </BODY>  ";
	  
	ventana = window.open("","ampliacion",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=400')  
	ventana.document.write(pagina)  
	ventana.document.close()
}



function mensajeSec01(msgStr) {
// document.returnValue = false;
  window.status = msgStr;
// document.returnValue = true;
}


// fin -->

