Navegador = navigator.appName;
Version  = parseInt(navigator.appVersion);
if (Navegador == "Netscape" && Version < 4) BRW = "NT3";
else if (Navegador == "Netscape" && Version >= 4) BRW = "NT4";
else BRW = "IE";

function winUp(name,titulo,ancho,alto){
  if (Version >=4) {
    LeftPosition=(screen.width)?(screen.width-ancho)/2:100;
    TopPosition=(screen.height)?(screen.height-alto)/2:100;
  }
  else {
    LeftPosition=60;
    TopPosition=100;
    ancho=ancho + 20;
    alto=alto + 50;
  }
  if (BRW == "NT4" && window.flotante){
    if (flotante.name == "Dist") flotante.close();
  }        
  else {
    if (window.flotante) if(!flotante.closed) flotante.close();
  }

  strF = "window.open('','Dist','toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=yes,resizable=1,top=0,left=0,width=" + ancho + ",height=" + alto + "')";
  flotante = eval(strF);
  flotante.document.write("<head><TITLE>"+titulo+"</TITLE></head>");
  flotante.document.write("<BODY topmargin='0' leftmargin='0' marginheight='0' marginwidth='0'>");
  flotante.document.write("<center><img src='"+name+"'></center>");
  flotante.document.write("</body>");
}

function openDet(ruta,nombre,ancho,alto) {
        if (Version >=4) {
          LeftPosition=(screen.width)?(screen.width-ancho)/2:100;
          TopPosition=(screen.height)?(screen.height-alto)/2:100;
        }
        else {
          LeftPosition=60;
          TopPosition=145;
          ancho=ancho + 20;
          alto=alto + 50;
        }
        if (BRW == "NT4" && window.Detalle){
                if (Detalle.name == "Detalle") Detalle.close();
        }
        else {
          if (window.Detalle) if(!Detalle.closed) Detalle.close();
        }

        strD="window.open('','Detalle','toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=yes,resizable=yes,top=" +TopPosition +",left=" + LeftPosition +",width=" + ancho + ",height=" + alto + "')";
        Detalle=eval(strD);
        Detalle.document.write("<head><TITLE>"+nombre+"</TITLE></head>");
        Detalle.document.write("<BODY topmargin='0' leftmargin='0' marginheight='0' marginwidth='0'>");
        Detalle.document.write("<center><img src='"+ruta+nombre+".jpg'></center>");
        Detalle.document.write("</body>");
}

