/* Funciones de validación de datos y visualización de imágenes. */

/* Visualización u ocultación de imágenes. */
function verElemento(id, NNtype, IEtype, WC3type) {
  if (document.getElementById) {
    eval("document.getElementById(id).style.visibility = \"" + WC3type + "\"");
  } else {
    if (document.layers) {
      document.layers[id].visibility = NNtype;
    } else {
      if (document.all) {
        eval("document.all." + id + ".style.visibility = \"" + IEtype + "\"");
      }
    }
  }
}

/* Ocultar todos los elementos DIV de la página de productos. */
function ocultarElementos() {
  eval("document.getElementById(\"abrasivosDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"adhesivosDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"almacenajeDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"cerrajeriaDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"climatizacionDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"compresoresDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"construccionDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"electricidadDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"embalajeDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"fijacionDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"corteDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"electricaDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"manualDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"latiguillosDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"limpiezaDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"lubricantesDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"metrologiaDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"pinturaDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"proteccionDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"soldaduraDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"tornilleriaDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"transmisionDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"transporteDiv\").style.visibility = \"hidden\"");
  eval("document.getElementById(\"tubosDiv\").style.visibility = \"hidden\"");
}

/* Cambio de imagen asociada a un elemento. */
function cambiarImagen(elemento, nombre) {
  document[elemento].src = nombre;
}

/* Control de datos en envío de mensajes. */
function valida(){
  if ((document.contactar.direccion.value.trim()=="")&&
      (document.contactar.telefono.value.trim()=="") &&
      (document.contactar.fax.value.trim()=="") &&
      (document.contactar.email.value.trim()=="") &&
      (document.contactar.contenido.value.trim()=="")){
    alert("Debe indicar el texto de la consulta y además al menos uno "+
     "de los siguientes datos: dirección, teléfono, fax o e-mail.");
    return(false);
  }
  if ((document.contactar.direccion.value.trim()=="")&&
      (document.contactar.telefono.value.trim()=="") &&
      (document.contactar.fax.value.trim()=="") &&
      (document.contactar.email.value.trim()=="")){
    alert("Debe indicar al menos uno de los siguientes datos: dirección, "+
     "teléfono, fax o e-mail.");
    return(false);
  }
  if (document.contactar.contenido.value.trim()==""){
    alert("Debe indicar el texto de la consulta.");
    return(false);
  }
  return(true);
}

/* Eliminación de espacios en una cadena. */
String.prototype.trim = function() {
  // Nos saltamos los espacios del principio y del final
  // y devolvemos lo de en medio.
  var x=this;
  x=x.replace(/^\s*(.*)/, "$1");
  x=x.replace(/(.*?)\s*$/, "$1");
  return x;
}

function verifyCompatibleBrowser(){
    this.ver=navigator.appVersion
    this.dom=document.getElementById?1:0
    this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
    this.ie4=(document.all && !this.dom)?1:0;
    this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;

    this.ns4=(document.layers && !this.dom)?1:0;
    this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
    return this
}


function ConstructObject(obj,nest){
    nest=(!nest) ? '':'document.'+nest+'.'
    this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0;
    this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0;
    this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight
    this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight
    this.up=MoveAreaUp;this.down=MoveAreaDown;
    this.MoveArea=MoveArea; this.x; this.y;
    this.obj = obj + "Object"
    eval(this.obj + "=this")
    return this
}

function MoveArea(x,y){
    this.x=x;this.y=y
    this.css.left=this.x
    this.css.top=this.y
}

function MoveAreaDown(move){
	if(this.y>-this.scrollHeight+objContainer.clipHeight){
    this.MoveArea(0,this.y-move)
    if(loop) setTimeout(this.obj+".down("+move+")",speed)
	}
}

function MoveAreaUp(move){
	if(this.y<0){
    this.MoveArea(0,this.y-move)
    if(loop) setTimeout(this.obj+".up("+move+")",speed)
	}
}

function PerformScroll(speed){
	if(initialised){
		loop=true;
		if(speed>0) objScroller.down(speed)
		else objScroller.up(speed)
	}
}

function CeaseScroll(){
    loop=false
    if(timer) clearTimeout(timer)
}

function InitialiseScrollableArea(){
    objContainer=new ConstructObject('divContainer')
    objScroller=new ConstructObject('divContent','divContainer')
    objScroller.MoveArea(0,0)
    objContainer.css.visibility='visible'
    initialised=true;
}


// Segundo área de contenido

function verifyCompatibleBrowser1(){
    this.ver=navigator.appVersion
    this.dom=document.getElementById?1:0
    this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
    this.ie4=(document.all && !this.dom)?1:0;
    this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;

    this.ns4=(document.layers && !this.dom)?1:0;
    this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
    return this
}

function ConstructObject1(obj,nest){
    nest=(!nest) ? '':'document.'+nest+'.'
    this.el=bw1.dom?document.getElementById(obj):bw1.ie4?document.all[obj]:bw1.ns4?eval(nest+'document.'+obj):0;
    this.css=bw1.dom?document.getElementById(obj).style:bw1.ie4?document.all[obj].style:bw1.ns4?eval(nest+'document.'+obj):0;
    this.scrollHeight=bw1.ns4?this.css.document.height:this.el.offsetHeight
    this.clipHeight=bw1.ns4?this.css.clip.height:this.el.offsetHeight
    this.up=MoveAreaUp1;this.down=MoveAreaDown1;
    this.MoveArea=MoveArea1; this.x; this.y;
    this.obj = obj + "Object"
    eval(this.obj + "=this")
    return this
}

function MoveArea1(x,y){
    this.x=x;this.y=y
    this.css.left=this.x
    this.css.top=this.y
}

function MoveAreaDown1(move){
	if(this.y>-this.scrollHeight+objContainer1.clipHeight){
    this.MoveArea(0,this.y-move)
    if(loop1) setTimeout(this.obj+".down("+move+")",speed1)
	}
}

function MoveAreaUp1(move){
	if(this.y<0){
    this.MoveArea(0,this.y-move)
    if(loop1) setTimeout(this.obj+".up("+move+")",speed1)
	}
}

function PerformScroll1(speed){
	if(initialised1){
		loop1=true;
		if(speed>0) objScroller1.down(speed)
		else objScroller1.up(speed)
	}
}

function CeaseScroll1(){
    loop1=false
    if(timer1) clearTimeout(timer1)
}

function InitialiseScrollableArea1(){
    objContainer1=new ConstructObject1('divContainer1')
    objScroller1=new ConstructObject1('divContent1','divContainer1')
    objScroller1.MoveArea(0,0)
    objContainer1.css.visibility='visible'
    initialised1=true;
}

///////////////////////////////////////////////////////////////////////////////////
// Página a la que se accede desde las banderas del index.html
function paginaInicio1024(){
  document.write("<DIV style='position:absolute;top:80px;left:100px;width:50px;z-index:5;'>");
  document.write("  <TABLE cellspacing=0 cellpadding=0>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomosSelec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porqueSelec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcasSelec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productosSelec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletinSelec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultasSelec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contactoSelec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("  </TABLE>");
  document.write("</DIV>");


  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-100;
  }else{
    ancho=screen.width-493-100-20;
  }
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:74px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");
  document.write("</TABLE>");

  //Tabla para resto de la página.
  document.write("<DIV style=\"position:absolute;top:74px;width:100%;\">");
  document.write("  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("    <TR>");
  document.write("      <TD valign=top width=100px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("        <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }else{
    document.write("        <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }
  document.write("      <TD align=left>");

  //Tabla cuerpo.
  document.write("        <TABLE  width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("          <TR>");
  if (navigator.appName == "Netscape"){
    document.write("            <TD colspan=2 height=140px>");
  }
  else{
    document.write("            <TD colspan=2 height=160px>");
  }
  document.write("              <IMG src=\"img/transparente.gif\"></TD>");
  document.write("          </TR>");
  document.write("          <TR width=100%>");
  document.write("            <TD valign=bottom rowspan=2 align=left>");
  document.write("              <IMG src=\"img/ribeteLlave.gif\" style=\"width:46px;height:231px;\"></TD>");
  document.write("            <TD valign=bottom align=right>");
  document.write("              <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                <TR>");
  document.write("                  <TD>");
  document.write("                    <A href=\"inicio.html\"><IMG src=\"img/logoInicioMenu.gif\" style=\"position:relative;top:40px;\"></A></TD>");
  document.write("                  <TD>");
  document.write("                    <IMG src=\"img/engranajeInicioMenu.gif\"></TD>");
  document.write("                </TR>");
  document.write("              </TABLE></TD>");
  document.write("          </TR>");
  document.write("          <TR>");

  if (navigator.appName == "Netscape"){
    ancho=screen.width-100-46-33;
  }else{
    ancho=screen.width-100-46-33-20;
  }
  document.write("            <TD valign=bottom align=left width=" + ancho + ">");
  document.write("              <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:21px\"></TD>");
  document.write("            <TD valign=bottom align=right>");
  document.write("              <IMG src=\"img/ribeteFin.gif\" style=\"width:33px;right:0px\"></TD>");
  document.write("          </TR>");
  document.write("          <TR>");
  document.write("            <TD valign=middle align=right colspan=3 height=35px;>");
  document.write("              <IMG src=\"img/solucionesDir.gif\" style=\"position:relative;right:310px;\">");
//  document.write("              <A href=\"inicio.html\"><IMG src=\"img/espaniol.gif\" style=\"position:relative;right:150px;\"></A>");
  document.write("              <A href=\"indexMenu.html\"><IMG src=\"img/ingles.gif\" style=\"position:relative;right:100px;top:3px\"></A></TD>");
  document.write("          </TR>");
  document.write("          <TR>");
  if (navigator.appName == "Netscape"){
    document.write("            <TD valign=middle align=right colspan=3 height=65px>");
  }else{
    document.write("            <TD valign=middle align=right colspan=3 height=65px>");
  }
  document.write("              <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:50px;\"></TD>");
  document.write("          </TR>");
  document.write("        </TABLE></TD>");

  document.write("    </TR>");
  document.write("  </TABLE>");
  document.write("</DIV");
}

//////////////////////////////////////////////////////////////////////////////////
// inicioMenu.html para 800 x 600
function paginaInicio800(){
  //Menú
  document.write("<DIV style='position:absolute;top:50px;left:55px;width:50px;z-index:5;'>");
  document.write("  <TABLE cellspacing=0 cellpadding=0>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomos800Selec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porque800Selec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcas800Selec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productos800Selec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletin800Selec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultas800Selec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("    <TR>");
  document.write("      <TD>");
  document.write("        <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contacto800Selec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("    </TR>");
  document.write("  </TABLE>");
  document.write("</DIV>");

  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron800.gif\" style=\"height:44px\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-59-2;
  }else{
    ancho=screen.width-493-59-20;
  }
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:44px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen800.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");
  document.write("</TABLE>");

  //Tabla para resto de la página.
  document.write("<DIV style=\"position:absolute;top:44px;height:100%;width=100%;\">");
  document.write("  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("    <TR>");
  document.write("      <TD valign=top>");
  if (navigator.appName == "Netscape"){
    document.write("        <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:400px;\"></TD>");
  }else{
    document.write("        <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:400px;\"></TD>");
  }
  document.write("      <TD align=left widht=100%>");

  //Tabla cuerpo.
  document.write("        <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  if (navigator.appName == "Netscape"){
    document.write("          <TR height=150px>");
  }
  else{
    document.write("          <TR height=150px>");
  }
  document.write("            <TD colspan=2>");
  document.write("              <IMG src=\"img/transparente.gif\"></TD>");
  document.write("          </TR>");
  document.write("          <TR width=100%>");
  document.write("            <TD valign=bottom rowspan=2 align=left>");
  document.write("              <IMG src=\"img/ribeteLlave800.gif\"></TD>");
  document.write("            <TD valign=bottom align=right>");
  document.write("              <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                <TR>");
  document.write("                  <TD valign=top>");
  document.write("                    <A href=\"inicio.html\"><IMG src=\"img/logoInicioMenu800.gif\" style=\"position:relative;top:60px;\"></A></TD>");
  document.write("                  <TD width=150px>");
  document.write("                    <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                  <TD valign=bottom>");
  document.write("                    <IMG src=\"img/engranajeInicioMenu800.gif\"></TD>");
  document.write("                </TR>");
  document.write("              </TABLE></TD>");
  document.write("          </TR>");
  document.write("          <TR>");

  if (navigator.appName == "Netscape"){
    ancho=screen.width-59-30-19;
  }else{
    ancho=screen.width-59-30-19+25;
  }
  document.write("            <TD valign=bottom align=left width=" + ancho + ">");
  document.write("              <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:13px\"></TD>");
  document.write("            <TD valign=bottom align=right>");
  document.write("              <IMG src=\"img/ribeteFin.gif\" style=\"height:12px;right:0px\"></TD>");
  document.write("          </TR>");
  document.write("          <TR>");
  document.write("            <TD valign=bottom align=right colspan=3 height=30px;>");
//  document.write("              <A href=\"inicio.html\"><IMG src=\"img/espaniol.gif\" style=\"position:relative;right:60px;\"></A></TD>");
//  document.write("              <A href=\"inicio.html\"><IMG src=\"img/espaniol.gif\" style=\"position:relative;right:60px;\"></A>");
  document.write("              <IMG src=\"img/solucionesDir.gif\" style=\"position:relative;right:100px;\">");
  document.write("              <A href=\"indexMenu.html\"><IMG src=\"img/ingles.gif\" style=\"position:relative;right:30px;top:2px;\"></A></TD>");
  document.write("          </TR>");
  document.write("          <TR>");
  document.write("            <TD valign=middle align=right colspan=3 height=20px>");
  if (navigator.appName == "Netscape"){
    document.write("              <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:0px;\"></TD>");
  }else{
    document.write("              <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:50px;\"></TD>");
  }
  document.write("          </TR>");
  document.write("        </TABLE></TD>");

  document.write("    </TR>");
  document.write("  </TABLE>");
  document.write("</DIV");
}

//////////////////////////////////////////////////////////////////////////////////
// quienes.html para 1024 x 768
function paginaQuienes1024(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-100;
  }else{
    ancho=screen.width-493-100-20;
  }
  barraInferior=ancho+493;
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:74px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen.gif\"></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=100px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=71px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomosSelec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porqueSelec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcasSelec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productosSelec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletinSelec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultasSelec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contactoSelec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE>");
  document.write("                      </TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD>");
  document.write("                        <IMG src=\"img/transparente.gif\" style=\"height:10px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE>");
  document.write("                </TD>");
  document.write("                <TD width=90px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=45px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Qui&eacute;nes somos</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloQuienes.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <DIV id=\"divContainer\" style=\"position:relative;width:510px;height:250px;overflow:hidden;clip:rect(0,500,250,0);z-index:10;\">");
  document.write("                                <DIV id=\"divContent\" style=\"position:relative; top:0; left:0; width:500;\">");
  document.write("                                  <P class=\"texto\">Empresa joven y din&aacute;mica dedicada especialmente a la ");
  document.write("venta y distribuci&oacute;n de todo tipo de Suministros y Servicios para la Industria. Est&aacute; ubicada en ");
  document.write("Arnedo (Rioja Baja) desde hace 12 a&ntilde;os, trabajando con unas 12.000 referencias en stock permanente ");
  document.write("para lo que disponen de un almac&eacute;n de 500 m2, donde actualmente trabajan 6 personas distribuidas entre ");
  document.write("las &aacute;reas administrativas, comercial, tienda y reparto directo al cliente.<BR><BR>");
  document.write("Desde nuestro inicio como empresa estamos atendiendo a diversos sectores como Calzado, Industria, ");
  document.write("Automoci&oacute;n y Obra Civil, con un crecimiento indiscriminado dentro de cada uno de ellos. ");
  document.write("Como objetivo para conseguir este crecimiento y dentro de un plan de expansi&oacute;n constante, ");
  document.write("nos planteamos en su día el hacernos con unas marcas de primer&iacute;sima fila, en exclusiva para ");
  document.write("las zonas naturales de actuaci&oacute;n de La Rioja y Navarra, lo que nos ha permitido implantarnos como ");
  document.write("proveedores de primer nivel en las principales empresas de dichos sectores.</P>");
  document.write("                                </DIV>");
  document.write("                              </DIV></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE>");
  document.write("                      </TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=20px>");
  document.write("                        <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:35px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=10px>");
  document.write("                        <P class=\"direccion\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE>");
  document.write("                </TD>");
  //Espacio a la derecha de la pantalla
  document.write("                <TD>");
  document.write("                  <IMG src=\"img/transparente.gif\" style=\"width:50px\"></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior.gif\"></TD>");

  document.write("                      <TD valign=top align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-39-25-1)+";height:16px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:16px\"></TD>");
  }

  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:16px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:29px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:42px\"></TD>");
  }

  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// quienes.html para 800 x 600
function paginaQuienes800(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron800.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-59-16;
    barraInferior=ancho+493;
  }else{
    ancho=screen.width-493-59-20;
    barraInferior=ancho+493;
  }

  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:44px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen800.gif\"></TD>");
  document.write("    <TD></TD>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=59px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=54px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu800.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomos800Selec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porque800Selec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcas800Selec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productos800Selec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletin800Selec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultas800Selec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contacto800Selec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas800.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("                <TD width=35px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=15px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=30px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Qui&eacute;nes somos</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloQuienes.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <TABLE width=80% height=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <DIV id=\"divContainer\" style=\"position:relative;width:430px;height:210px;overflow:hidden;clip:rect(0,430,210,0);z-index:10;\">");
  document.write("                                <DIV id=\"divContent\" style=\"position:relative; top:0; left:0; width:430;\">");
  document.write("                                  <P class=\"texto\">Empresa joven y din&aacute;mica dedicada especialmente a la ");
  document.write("venta y distribuci&oacute;n de todo tipo de Suministros y Servicios para la Industria. Est&aacute; ubicada en ");
  document.write("Arnedo (Rioja Baja) desde hace 12 a&ntilde;os, trabajando con unas 12.000 referencias en stock permanente ");
  document.write("para lo que disponen de un almac&eacute;n de 500 m2, donde actualmente trabajan 6 personas distribuidas entre ");
  document.write("las &aacute;reas administrativas, comercial, tienda y reparto directo al cliente.<BR><BR>");
  document.write("Desde nuestro inicio como empresa estamos atendiendo a diversos sectores como Calzado, Industria, ");
  document.write("Automoci&oacute;n y Obra Civil, con un crecimiento indiscriminado dentro de cada uno de ellos. ");
  document.write("Como objetivo para conseguir este crecimiento y dentro de un plan de expansi&oacute;n constante, ");
  document.write("nos planteamos en su día el hacernos con unas marcas de primer&iacute;sima fila, en exclusiva para ");
  document.write("las zonas naturales de actuaci&oacute;n de La Rioja y Navarra, lo que nos ha permitido implantarnos como ");
  document.write("proveedores de primer nivel en las principales empresas de dichos sectores.</P>");
  document.write("                                </DIV>");
  document.write("                              </DIV></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=20px>");
  document.write("                        <IMG src=\"img/logosEmpresas800.gif\" style=\"position:relative;right:75px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=20px>");
  document.write("                        <P class=\"direccion800\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior800.gif\"></TD>");
  document.write("                      <TD valign=bottom align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-8)+";height:13px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-7)+";height:13px\"></TD>");
  }
  document.write("                      <TD valign=bottom align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:13px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:25px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:20px\"></TD>");
  }
  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// porque.html para 1024 x 768
function paginaPorque1024(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-100;
  }else{
    ancho=screen.width-493-100-20;
  }
  barraInferior=ancho+493;
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:74px;width:" + ancho + "px;\"></TD>");
    document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=100px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=71px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomosSelec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porqueSelec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcasSelec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productosSelec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletinSelec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultasSelec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contactoSelec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD>");
  document.write("                        <IMG src=\"img/transparente.gif\" style=\"height:10px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE>");
  document.write("                </TD>");
  document.write("                <TD width=90px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=45px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Por qué DIR rioja</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloPorque.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <TABLE width=80% height=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <DIV id=\"divContainer\" style=\"position:relative;width:510px;height:250px;overflow:hidden;clip:rect(0,500,250,0);z-index:10;\">");
  document.write("                                <DIV id=\"divContent\" style=\"position:relative; top:0; left:0; width:500;\">");
  document.write("                                  <P class=\"texto\">En DIR rioja apostamos por una filosof&iacute;a de empresa donde nuestro cliente es siempre el elemento central. ");
  document.write("Convencidos de que nuestro &eacute;xito se basa en un buen servicio, he aqu&iacute; algunas de las caracter&iacute;sticas de nuestro negocio que pueden hacer de DIR ");
  document.write("Rioja su proveedor ideal.<BR><BR>");
  document.write("<B>En DIR rioja ofrecemos soluciones</B><BR>");
  document.write("Nuestra gran variedad de productos nos est&aacute; permitiendo dar respuesta a nuestros clientes, no s&oacute;lo como proveedores, ");
  document.write("sino como ingenier&iacute;a de aplicaciones, mejoras de m&eacute;todos de trabajo, ergonom&iacute;a, seguridad e higiene. ");
  document.write("En definitiva, tratamos de resolver el problema que se le plantea, de tal forma que nuestros clientes nos puedan considerar ");
  document.write("un proveedor global para su empresa.<BR><BR>");
  document.write("<B>Distribuidores autorizados</B><BR>");
  document.write("En DIR rioja apostamos, en contra de lo habitual en nuestro sector (varias marcas para el mismo producto), por una exclusividad ");
  document.write("de marcas, ya que as&iacute; garantizamos que nuestras firmas representadas est&eacute;n realmente estudiando y trabajando con nosotros ");
  document.write("el problema que en cada caso queremos resolver.<BR>");
  document.write("Adem&aacute;s, estamos convencidos de que esta forma de actuar es la que nos est&aacute; permitiendo mantener el crecimiento constante ");
  document.write("y la introducci&oacute;n en clientes cada d&iacute;a m&aacute;s exigentes y con unas necesidades t&eacute;cnicas acordes con el mercado actual.<BR>");
  document.write("<A class=\"porque\" href=\"marcas.html\">Consulte aqu&iacute; nuestros distribuidores oficiales</A><BR><BR>");
  document.write("<B>Entrega diaria de pedidos</B><BR>");
  document.write("En pos de nuestra constante de buscar soluciones para nuestros clientes, recientemente hemos creado unas rutas diarias para ofrecer ");
  document.write("un servicio de entrega directa de los pedidos de sus empresas.<BR><BR></P>");
  document.write("                                </DIV>");
  document.write("                              </DIV></TD>");
  document.write("                            <TD align=left>");
  document.write("                              <DIV id=\"divUpControl\" style=\"z-index:10;\">");
  document.write("                                <IMG name=\"fArriba\" src=\"img/flechaArriba.gif\"");
  document.write("onMouseover=\"PerformScroll(-3);cambiarImagen('fArriba','img/flechaArriba1.gif')\"");
  document.write("onMouseout=\"CeaseScroll();cambiarImagen('fArriba','img/flechaArriba.gif')\">");
  document.write("                              </DIV>");
  document.write("                              <IMG src=\"img/lineaTexto.gif\" style=\"height:230px; width:11px;\">");
  document.write("                              <DIV id=\"divDownControl\" style=\"z-index:10;\">");
  document.write("                                <IMG name=\"fAbajo\" src=\"img/flechaAbajo.gif\"");
  document.write("onMouseover=\"PerformScroll(3);cambiarImagen('fAbajo','img/flechaAbajo1.gif')\"");
  document.write("onMouseout=\"CeaseScroll();cambiarImagen('fAbajo','img/flechaAbajo.gif')\">");
  document.write("                              </DIV></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=20px>");
  document.write("                        <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:35px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=10px>");
  document.write("                        <P class=\"direccion\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");
  //Espacio a la derecha de la pantalla
  document.write("               <TD>");
  document.write("                 <IMG src=\"img/transparente.gif\" style=\"width:50px\"></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior.gif\"></TD>");

  document.write("                      <TD valign=top align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-39-25-1)+";height:16px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:16px\"></TD>");
  }

  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:16px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:29px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:42px\"></TD>");
  }

  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");

  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// porque.html para 800 x 600
function paginaPorque800(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron800.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-59-16;
    barraInferior=ancho+493;
  }else{
    ancho=screen.width-493-59-20;
    barraInferior=ancho+493;
  }

  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:44px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen800.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=59px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");
  
  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=54px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu800.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomos800Selec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porque800Selec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcas800Selec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productos800Selec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletin800Selec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultas800Selec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contacto800Selec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas800.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE>");
  document.write("                </TD>");
  document.write("                <TD width=35px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=15px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=30px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Por qué DIR rioja</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloPorque.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <TABLE width=80% height=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <DIV id=\"divContainer\" style=\"position:relative;width:440px;height:210px;overflow:hidden;clip:rect(0,420,210,0);z-index:10;\">");
  document.write("                                <DIV id=\"divContent\" style=\"position:relative; top:0; left:0; width:435;\">");
  document.write("                                  <P class=\"texto\">En DIR rioja apostamos por una filosof&iacute;a de empresa donde nuestro cliente es siempre el elemento central. ");
  document.write("Convencidos de que nuestro &eacute;xito se basa en un buen servicio, he aqu&iacute; algunas de las caracter&iacute;sticas de nuestro negocio que pueden hacer de DIR ");
  document.write("Rioja su proveedor ideal.<BR><BR>");
  document.write("<B>En DIR rioja ofrecemos soluciones</B><BR>");
  document.write("Nuestra gran variedad de productos nos est&aacute; permitiendo dar respuesta a nuestros clientes, no s&oacute;lo como proveedores, ");
  document.write("sino como ingenier&iacute;a de aplicaciones, mejoras de m&eacute;todos de trabajo, ergonom&iacute;a, seguridad e higiene. ");
  document.write("En definitiva, tratamos de resolver el problema que se le plantea, de tal forma que nuestros clientes nos puedan considerar ");
  document.write("un proveedor global para su empresa.<BR><BR>");
  document.write("<B>Distribuidores autorizados</B><BR>");
  document.write("En DIR rioja apostamos, en contra de lo habitual en nuestro sector (varias marcas para el mismo producto), por una exclusividad ");
  document.write("de marcas, ya que as&iacute; garantizamos que nuestras firmas representadas est&eacute;n realmente estudiando y trabajando con nosotros ");
  document.write("el problema que en cada caso queremos resolver.<BR>");
  document.write("Adem&aacute;s, estamos convencidos de que esta forma de actuar es la que nos est&aacute; permitiendo mantener el crecimiento constante ");
  document.write("y la introducci&oacute;n en clientes cada d&iacute;a m&aacute;s exigentes y con unas necesidades t&eacute;cnicas acordes con el mercado actual.<BR>");
  document.write("<A class=\"porque\" href=\"marcas.html\">Consulte aqu&iacute; nuestros distribuidores oficiales</A><BR><BR>");
  document.write("<B>Entrega diaria de pedidos</B><BR>");
  document.write("En pos de nuestra constante de buscar soluciones para nuestros clientes, recientemente hemos creado unas rutas diarias para ofrecer ");
  document.write("un servicio de entrega directa de los pedidos de sus empresas.<BR><BR></P>");
  document.write("                              </DIV></TD>");
  document.write("                            <TD align=left>");
  document.write("                              <DIV id=\"divUpControl\" style=\"z-index:10;\">");
  document.write("                                <IMG name=\"fArriba\" src=\"img/flechaArriba.gif\"");
  document.write("onMouseover=\"PerformScroll(-3);cambiarImagen('fArriba','img/flechaArriba1.gif')\"");
  document.write("onMouseout=\"CeaseScroll();cambiarImagen('fArriba','img/flechaArriba.gif')\">");
  document.write("                              </DIV>");
  document.write("                              <IMG src=\"img/lineaTexto.gif\">");
  document.write("                              <DIV id=\"divDownControl\" style=\"z-index:10;\">");
  document.write("                                <IMG name=\"fAbajo\" src=\"img/flechaAbajo.gif\"");
  document.write("onMouseover=\"PerformScroll(3);cambiarImagen('fAbajo','img/flechaAbajo1.gif')\"");
  document.write("onMouseout=\"CeaseScroll();cambiarImagen('fAbajo','img/flechaAbajo.gif')\">");
  document.write("                              </DIV></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom>");
  document.write("                        <IMG src=\"img/logosEmpresas800.gif\" style=\"position:relative;right:75px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=25px>");
  document.write("                        <P class=\"direccion800\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior800.gif\"></TD>");
  document.write("                      <TD valign=bottom align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-8)+";height:13px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-7)+";height:13px\"></TD>");
  }
  document.write("                      <TD valign=bottom align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:13px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:25px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:20px\"></TD>");
  }
  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// marcas.html para 1024 x 768
function paginaMarcas1024(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-100;
  }else{
    ancho=screen.width-493-100-20;
  }
  barraInferior=ancho+493;
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:74px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=100px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=71px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomosSelec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porqueSelec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcasSelec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productosSelec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletinSelec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultasSelec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contactoSelec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD>");
  document.write("                        <IMG src=\"img/transparente.gif\" style=\"height:10px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("                <TD width=70px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=18px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=45px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Distribuidores autorizados</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloMarcas.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <TABLE width=80% height=100% cellspacing=0 cellpadding=01>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top>");
  document.write("                              <DIV id=\"divContainer\" style=\"position:relative;width:500px;height:300px;overflow:hidden;clip:rect(0,500,300,0);z-index:10;\">");
  document.write("                                <DIV id=\"divContent\" style=\"position:relative; top:0; left:0; width:500;\">");
  document.write("                                  <P class=\"texto\">Entre nuestras representadas contamos con firmas como:<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"fuchs\" src=\"img/logos/fuchs.gif\" onMouseOver=\"cambiarImagen('fuchs','img/logos/fuchsSelec.gif')\" onMouseOut=\"cambiarImagen('fuchs','img/logos/fuchs.gif')\" onClick=\"open('http://www.fuchs-oil.com/products.html','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=640,height=400')\">");
  document.write(" L&iacute;der a nivel mundial en todo tipo de aceites, grasas, productos para la construcci&oacute;n,...<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"cp\" src=\"img/logos/cp.gif\" onMouseOver=\"cambiarImagen('cp','img/logos/cpSelec.gif')\" onMouseOut=\"cambiarImagen('cp','img/logos/cp.gif')\" onClick=\"open('http://212.75.80.201/CPIndustrialSite/','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=775,height=400')\">");
  document.write(" Amplia gama de productos y soluciones para la producci&oacute;n. Desde herramientas de ");
  document.write(" ensamblaje, taladros, herramientas abrasivas, hasta lo m&aacute;s avanzado en sistemas de montaje y perforaci&oacute;n.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"nederman\" src=\"img/logos/nederman.gif\" onMouseOver=\"cambiarImagen('nederman','img/logos/nedermanSelec.gif')\" onMouseOut=\"cambiarImagen('nederman','img/logos/nederman.gif')\" onClick=\"open('http://www.nederman.com/webstore/cat05_es.html','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=640,height=400')\">");
  document.write(" Calidad medioambiental en el entorno de trabajo. Aspiraci&oacute;n industrial para todo tipo de agentes nocivos, polvos qu&iacute;micos y part&iacute;culas.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"enerpac\" src=\"img/logos/enerpac.gif\" onMouseOver=\"cambiarImagen('enerpac','img/logos/enerpacSelec.gif')\" onMouseOut=\"cambiarImagen('enerpac','img/logos/enerpac.gif')\" onClick=\"open('marcas/enerpac.html','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=650,height=400')\">");
  document.write(" Fuerza hidr&aacute;ulica para todas las aplicaciones industriales.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"henkel\" src=\"img/logos/henkel.gif\" onMouseOver=\"cambiarImagen('henkel','img/logos/henkelSelec.gif')\" onMouseOut=\"cambiarImagen('henkel','img/logos/henkel.gif')\" onClick=\"open('http://www.henkel.es/adhesivos/','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=755,height=400')\">");
  document.write(" Adhesivos y Colas para industria y para el particular, con 40 a&ntilde;os de experiencia.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"karcher\" src=\"img/logos/karcher.gif\" onMouseOver=\"cambiarImagen('karcher','img/logos/karcherSelec.gif')\" onMouseOut=\"cambiarImagen('karcher','img/logos/karcher.gif')\" onClick=\"open('http://www.karcher.es/indice.htm','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=770,height=400')\">");
  document.write(" Soluciones inteligentes para la limpieza profesional y del hogar.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"metallube\" src=\"img/logos/metalLube.gif\" onMouseOver=\"cambiarImagen('metallube','img/logos/metalLubeSelec.gif')\" onMouseOut=\"cambiarImagen('metallube','img/logos/metalLube.gif')\" onClick=\"open('http://www.metallube.es/productos.asp','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=815,height=400')\">");
  document.write(" El tratamiento antifricci&oacute;n tecnol&oacute;gicamente m&aacute;s avanzado del mundo, que consigue ");
  document.write("reducir la fricci&oacute;n un 95%, el desgaste m&aacute;s del 80% e incluso el consumo de aceite y combustible de cualquier motor.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"waircom\" src=\"img/logos/waircom.gif\" onMouseOver=\"cambiarImagen('waircom','img/logos/waircomSelec.gif')\" onMouseOut=\"cambiarImagen('waircom','img/logos/waircom.gif')\" onClick=\"open('http://www.waircom-mbs.com/ricerca/tipologiaing.htm','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=725,height=400')\">");
  document.write(" Neum&aacute;tica y automatismos.<BR><BR><BR></P>");
  document.write("                                </DIV>");
  document.write("                              </DIV></TD>");
  document.write("                            <TD align=left valign=middle>");
  document.write("                              <DIV id=\"divUpControl\" style=\"z-index:10;\">");
  document.write("                                <IMG name=\"fArriba\" src=\"img/flechaArriba.gif\"");
  document.write("onMouseover=\"PerformScroll(-3);cambiarImagen('fArriba','img/flechaArriba1.gif')\"");
  document.write("onMouseout=\"CeaseScroll();cambiarImagen('fArriba','img/flechaArriba.gif')\">");
  document.write("                              </DIV>");
  document.write("                              <IMG src=\"img/lineaTexto.gif\" style=\"height:280px; width:11px\">");
  document.write("                              <DIV id=\"divDownControl\" style=\"z-index:10;\">");
  document.write("                                <IMG name=\"fAbajo\" src=\"img/flechaAbajo.gif\"");
  document.write("onMouseover=\"PerformScroll(3);cambiarImagen('fAbajo','img/flechaAbajo1.gif')\"");
  document.write("onMouseout=\"CeaseScroll();cambiarImagen('fAbajo','img/flechaAbajo.gif')\">");
  document.write("                              </DIV></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=10px>");
  document.write("                        <P class=\"direccion\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");

  //Espacio a la derecha de la pantalla
  document.write("                <TD>");
  document.write("                 <IMG src=\"img/transparente.gif\" style=\"width:50px\"></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior.gif\"></TD>");

  document.write("                      <TD valign=top align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-39-25-1)+";height:16px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:16px\"></TD>");
  }

  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:16px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:29px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:42px\"></TD>");
  }

  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");

  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// marcas.html para 800 x 600
function paginaMarcas800(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron800.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-59-18;
    barraInferior=ancho+493;
  }else{
    ancho=screen.width-493-59-20;
    barraInferior=ancho+493;
  }

  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:44px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen800.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=59px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }

  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=54px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu800.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomos800Selec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porque800Selec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcas800Selec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productos800Selec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletin800Selec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultas800Selec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contacto800Selec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas800.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");

  document.write("                <TD width=35px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=15px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=30px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Distribuidores autorizados</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloMarcas.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <TABLE width=80% height=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <DIV id=\"divContainer\" style=\"position:relative;width:400px;height:210px;overflow:hidden;clip:rect(0,400,210,0);z-index:10;\">");
  document.write("                                <DIV id=\"divContent\" style=\"position:relative; top:0; left:0; width:395;\">");
  document.write("                                  <P class=\"texto\">Entre nuestras representadas contamos con firmas como:<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"fuchs\" src=\"img/logos/fuchs.gif\" onMouseOver=\"cambiarImagen('fuchs','img/logos/fuchsSelec.gif')\" onMouseOut=\"cambiarImagen('fuchs','img/logos/fuchs.gif')\" onClick=\"open('http://www.fuchs-oil.com/products.html','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=640,height=400')\">");
  document.write(" L&iacute;der a nivel mundial en todo tipo de aceites, grasas, productos para la construcci&oacute;n,...<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"cp\" src=\"img/logos/cp.gif\" onMouseOver=\"cambiarImagen('cp','img/logos/cpSelec.gif')\" onMouseOut=\"cambiarImagen('cp','img/logos/cp.gif')\" onClick=\"open('http://212.75.80.201/CPIndustrialSite/','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=775,height=400')\">");
  document.write(" Amplia gama de productos y soluciones para la producci&oacute;n. Desde herramientas de ");
  document.write(" ensamblaje, taladros, herramientas abrasivas, hasta lo m&aacute;s avanzado en sistemas de montaje y perforaci&oacute;n.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"nederman\" src=\"img/logos/nederman.gif\" onMouseOver=\"cambiarImagen('nederman','img/logos/nedermanSelec.gif')\" onMouseOut=\"cambiarImagen('nederman','img/logos/nederman.gif')\" onClick=\"open('http://www.nederman.com/webstore/cat05_es.html','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=500,height=400')\">");
  document.write(" Calidad medioambiental en el entorno de trabajo. Aspiraci&oacute;n industrial para todo tipo de agentes nocivos, polvos qu&iacute;micos y part&iacute;culas.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"enerpac\" src=\"img/logos/enerpac.gif\" onMouseOver=\"cambiarImagen('enerpac','img/logos/enerpacSelec.gif')\" onMouseOut=\"cambiarImagen('enerpac','img/logos/enerpac.gif')\" onClick=\"open('marcas/enerpac.html','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=650,height=400')\">");
  document.write(" Fuerza hidr&aacute;ulica para todas las aplicaciones industriales.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"henkel\" src=\"img/logos/henkel.gif\" onMouseOver=\"cambiarImagen('henkel','img/logos/henkelSelec.gif')\" onMouseOut=\"cambiarImagen('henkel','img/logos/henkel.gif')\" onClick=\"open('http://www.henkel.es/adhesivos/','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=755,height=400')\">");
  document.write(" Adhesivos y Colas para industria y para el particular, con 40 a&ntilde;os de experiencia.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"karcher\" src=\"img/logos/karcher.gif\" onMouseOver=\"cambiarImagen('karcher','img/logos/karcherSelec.gif')\" onMouseOut=\"cambiarImagen('karcher','img/logos/karcher.gif')\" onClick=\"open('http://www.karcher.es/indice.htm','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=770,height=400')\">");
  document.write(" Soluciones inteligentes para la limpieza profesional y del hogar.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"metallube\" src=\"img/logos/metalLube.gif\" onMouseOver=\"cambiarImagen('metallube','img/logos/metalLubeSelec.gif')\" onMouseOut=\"cambiarImagen('metallube','img/logos/metalLube.gif')\" onClick=\"open('http://www.metallube.es/productos.asp','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=700,height=400')\">");
  document.write(" El tratamiento antifricci&oacute;n tecnol&oacute;gicamente m&aacute;s avanzado del mundo, que consigue ");
  document.write("reducir la fricci&oacute;n un 95%, el desgaste m&aacute;s del 80% e incluso el consumo de aceite y combustible de cualquier motor.<BR><BR>");
  document.write("<IMG class=\"marcas\" name=\"waircom\" src=\"img/logos/waircom.gif\" onMouseOver=\"cambiarImagen('waircom','img/logos/waircomSelec.gif')\" onMouseOut=\"cambiarImagen('waircom','img/logos/waircom.gif')\" onClick=\"open('http://www.waircom-mbs.com/ricerca/tipologiaing.htm','','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width=725,height=400')\">");
  document.write(" Neum&aacute;tica y automatismos.<BR><BR><BR></P>");
  document.write("                                </DIV>");
  document.write("                              </DIV></TD>");
  document.write("                            <TD align=left>");
  document.write("                              <DIV id=\"divUpControl\" style=\"z-index:10;\">");
  document.write("                                <IMG name=\"fArriba\" src=\"img/flechaArriba.gif\"");
  document.write("onMouseover=\"PerformScroll(-3);cambiarImagen('fArriba','img/flechaArriba1.gif')\"");
  document.write("onMouseout=\"CeaseScroll();cambiarImagen('fArriba','img/flechaArriba.gif')\">");
  document.write("                              </DIV>");
  document.write("                              <IMG src=\"img/lineaTexto.gif\">");
  document.write("                              <DIV id=\"divDownControl\" style=\"z-index:10;\">");
  document.write("                                <IMG name=\"fAbajo\" src=\"img/flechaAbajo.gif\"");
  document.write("onMouseover=\"PerformScroll(3);cambiarImagen('fAbajo','img/flechaAbajo1.gif')\"");
  document.write("onMouseout=\"CeaseScroll();cambiarImagen('fAbajo','img/flechaAbajo.gif')\">");
  document.write("                              </DIV></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=20px>");
  document.write("                        <IMG src=\"img/logosEmpresas800.gif\" style=\"position:relative;right:75px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=20px>");
  document.write("                       <P class=\"direccion800\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");
  document.write("              </TR>");

    //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior800.gif\"></TD>");
  document.write("                      <TD valign=bottom align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-8)+";height:13px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-7)+";height:13px\"></TD>");
  }
  document.write("                      <TD valign=bottom align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:13px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:25px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:20px\"></TD>");
  }
  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// productos.html para 1024 x 768
function paginaProductos1024(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-100;
  }else{
    ancho=screen.width-493-100-20;
  }
  barraInferior=ancho+493;
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:74px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=100px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=71px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomosSelec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porqueSelec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcasSelec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productosSelec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletinSelec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultasSelec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contactoSelec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("                <TD width=100px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");

  document.write("                <TD align=right valign=top>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=150px cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de familias de productos.
  document.write("                        <TABLE cellspacing=0 cellpadding=0 border=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"abrasivos.html\"><IMG name=\"abrasivos\" src=\"img/productos/abrasivos.gif\"");
  document.write("onMouseOut=\"cambiarImagen('abrasivos', 'img/productos/abrasivos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('abrasivos', 'img/productos/abrasivosSelec.gif');ocultarElementos();verElemento('abrasivosDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"adhesivos.html\"><IMG name=\"adhesivos\" src=\"img/productos/adhesivos.gif\"");
  document.write("onMouseOut=\"cambiarImagen('adhesivos', 'img/productos/adhesivos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('adhesivos', 'img/productos/adhesivosSelec.gif');ocultarElementos();verElemento('adhesivosDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"almacenaje.html\"><IMG name=\"almacenaje\" src=\"img/productos/almacenaje.gif\"");
  document.write("onMouseOut=\"cambiarImagen('almacenaje', 'img/productos/almacenaje.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('almacenaje', 'img/productos/almacenajeSelec.gif');ocultarElementos();verElemento('almacenajeDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"cerrajeria.html\"><IMG name=\"cerrajeria\" src=\"img/productos/cerrajeria.gif\"");
  document.write("onMouseOut=\"cambiarImagen('cerrajeria', 'img/productos/cerrajeria.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('cerrajeria', 'img/productos/cerrajeriaSelec.gif');ocultarElementos();verElemento('cerrajeriaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"climatizacion.html\"><IMG name=\"climatizacion\" src=\"img/productos/climatizacion.gif\"");
  document.write("onMouseOut=\"cambiarImagen('climatizacion', 'img/productos/climatizacion.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('climatizacion', 'img/productos/climatizacionSelec.gif');ocultarElementos();verElemento('climatizacionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"compresores.html\"><IMG name=\"compresores\" src=\"img/productos/compresores.gif\"");
  document.write("onMouseOut=\"cambiarImagen('compresores', 'img/productos/compresores.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('compresores', 'img/productos/compresoresSelec.gif');ocultarElementos();verElemento('compresoresDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"construccion.html\"><IMG name=\"construccion\" src=\"img/productos/construccion.gif\"");
  document.write("onMouseOut=\"cambiarImagen('construccion', 'img/productos/construccion.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('construccion', 'img/productos/construccionSelec.gif');ocultarElementos();verElemento('construccionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"electricidad.html\"><IMG name=\"electricidad\" src=\"img/productos/electricidad.gif\"");
  document.write("onMouseOut=\"cambiarImagen('electricidad', 'img/productos/electricidad.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('electricidad', 'img/productos/electricidadSelec.gif');ocultarElementos();verElemento('electricidadDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Abrasivos</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Adhesivos</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Almacenaje</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Cerrajer&iacute;a</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Climatizaci&oacute;n/<BR>Aire</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Compresores/<BR>Generadores</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Construcci&oacute;n</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Electricidad</TD>");
  document.write("                          </TR>");
  
  document.write("                          <TR>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"embalaje.html\"><IMG name=\"embalaje\" src=\"img/productos/embalaje.gif\"");
  document.write("onMouseOut=\"cambiarImagen('embalaje', 'img/productos/embalaje.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('embalaje', 'img/productos/embalajeSelec.gif');ocultarElementos();verElemento('embalajeDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"fijacion.html\"><IMG name=\"fijacion\" src=\"img/productos/fijacion.gif\"");
  document.write("onMouseOut=\"cambiarImagen('fijacion', 'img/productos/fijacion.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('fijacion', 'img/productos/fijacionSelec.gif');ocultarElementos();verElemento('fijacionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"corte.html\"><IMG name=\"corte\" src=\"img/productos/corte.gif\"");
  document.write("onMouseOut=\"cambiarImagen('corte', 'img/productos/corte.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('corte', 'img/productos/corteSelec.gif');ocultarElementos();verElemento('corteDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"electrica.html\"><IMG name=\"electrica\" src=\"img/productos/electrica.gif\"");
  document.write("onMouseOut=\"cambiarImagen('electrica', 'img/productos/electrica.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('electrica', 'img/productos/electricaSelec.gif');ocultarElementos();verElemento('electricaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"manual.html\"><IMG name=\"manual\" src=\"img/productos/manual.gif\"");
  document.write("onMouseOut=\"cambiarImagen('manual', 'img/productos/manual.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('manual', 'img/productos/manualSelec.gif');ocultarElementos();verElemento('manualDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"latiguillos.html\"><IMG name=\"latiguillos\" src=\"img/productos/latiguillos.gif\"");
  document.write("onMouseOut=\"cambiarImagen('latiguillos', 'img/productos/latiguillos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('latiguillos', 'img/productos/latiguillosSelec.gif');ocultarElementos();verElemento('latiguillosDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"limpieza.html\"><IMG name=\"limpieza\" src=\"img/productos/limpieza.gif\"");
  document.write("onMouseOut=\"cambiarImagen('limpieza', 'img/productos/limpieza.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('limpieza', 'img/productos/limpiezaSelec.gif');ocultarElementos();verElemento('limpiezaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"lubricantes.html\"><IMG name=\"lubricantes\" src=\"img/productos/lubricantes.gif\"");
  document.write("onMouseOut=\"cambiarImagen('lubricantes', 'img/productos/lubricantes.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('lubricantes', 'img/productos/lubricantesSelec.gif');ocultarElementos();verElemento('lubricantesDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                          </TR>");

  document.write("                          <TR>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Embalaje</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Fijaci&oacute;n</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Herramienta de corte</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Herramienta el&eacute;ctrica</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Herramienta manual</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Latiguillos</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Limpieza</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Lubricantes</TD>");
  document.write("                          </TR>");
  
  document.write("                          <TR>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"metrologia.html\"><IMG name=\"metrologia\" src=\"img/productos/metrologia.gif\"");
  document.write("onMouseOut=\"cambiarImagen('metrologia', 'img/productos/metrologia.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('metrologia', 'img/productos/metrologiaSelec.gif');ocultarElementos();verElemento('metrologiaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"pintura.html\"><IMG name=\"pintura\" src=\"img/productos/pintura.gif\"");
  document.write("onMouseOut=\"cambiarImagen('pintura', 'img/productos/pintura.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('pintura', 'img/productos/pinturaSelec.gif');ocultarElementos();verElemento('pinturaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"proteccion.html\"><IMG name=\"proteccion\" src=\"img/productos/proteccion.gif\"");
  document.write("onMouseOut=\"cambiarImagen('proteccion', 'img/productos/proteccion.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('proteccion', 'img/productos/proteccionSelec.gif');ocultarElementos();verElemento('proteccionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"soldadura.html\"><IMG name=\"soldadura\" src=\"img/productos/soldadura.gif\"");
  document.write("onMouseOut=\"cambiarImagen('soldadura', 'img/productos/soldadura.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('soldadura', 'img/productos/soldaduraSelec.gif');ocultarElementos();verElemento('soldaduraDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"tornilleria.html\"><IMG name=\"tornilleria\" src=\"img/productos/tornilleria.gif\"");
  document.write("onMouseOut=\"cambiarImagen('tornilleria', 'img/productos/tornilleria.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('tornilleria', 'img/productos/tornilleriaSelec.gif');ocultarElementos();verElemento('tornilleriaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px >");
  document.write("                              <CENTER><A href=\"transmision.html\"><IMG name=\"transmision\" src=\"img/productos/transmision.gif\"");
  document.write("onMouseOut=\"cambiarImagen('transmision', 'img/productos/transmision.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('transmision', 'img/productos/transmisionSelec.gif');ocultarElementos();verElemento('transmisionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"transporte.html\"><IMG name=\"transporte\" src=\"img/productos/transporte.gif\"");
  document.write("onMouseOut=\"cambiarImagen('transporte', 'img/productos/transporte.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('transporte', 'img/productos/transporteSelec.gif');ocultarElementos();verElemento('transporteDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"tubos.html\"><IMG name=\"tubos\" src=\"img/productos/tubos.gif\"");
  document.write("onMouseOut=\"cambiarImagen('tubos', 'img/productos/tubos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('tubos', 'img/productos/tubosSelec.gif');ocultarElementos();verElemento('tubosDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                          </TR>");

  document.write("                          <TR>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Metrolog&iacute;a</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Pintura</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Protecci&oacute;n laboral</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Soldadura</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Torniller&iacute;a</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Transmisi&oacute;n</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Transporte y elevaci&oacute;n</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Tubos y manguera</TD>");
  document.write("                          </TR>");

  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <IMG src=\"img/transparente.gif\" style=\"height:3px;\"></TD>");
  document.write("                          </TR>");
  
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloProductos.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valing=top>");
  document.write("                        <IMG src=\"img/barraProductos.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");

  //Descripción de los productos.
  document.write("                    <TR>");
  document.write("                      <TD width=100%>");
  document.write("                        <DIV style=\"position:relative;top:0px;width:100%;height:165px;\">");
  document.write("                          <DIV id=\"abrasivosDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"abrasivos.html\" class=\"productos\">Abrasivos</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;lijas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pulido<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;abanicos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;discos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cerdas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;muelas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"abrasivos.html\"><IMG src=\"img/productos/abrasivosG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"adhesivosDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=250px valign=top>");
  document.write("                                  <BR><A href=\"adhesivos.html\" class=\"productos\">Adhesivos</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;colas de contacto<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cianoacrilatos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;barras termofusibles<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;maquinaria para aplicaci&oacute;n de pegamentos<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"adhesivos.html\"><IMG src=\"img/productos/adhesivosG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"almacenajeDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"almacenaje.html\" class=\"productos\">Almacenaje</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;estanter&iacute;as ranuradas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;estanter&iacute;as de media carga<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;paletizaci&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;envases met&aacute;licos y pl&aacute;sticos<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"almacenaje.html\"><IMG src=\"img/productos/almacenajeG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"cerrajeriaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"cerrajeria.html\" class=\"productos\">Cerrajer&iacute;a</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cerraduras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;manillas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;bombines<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cerrojos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;candados<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cajas fuertes<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;herrajes<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"cerrajeria.html\"><IMG src=\"img/productos/cerrajeriaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"climatizacionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=300px valign=top>");
  document.write("                                  <BR><A href=\"climatizacion.html\" class=\"productos\">Climatizaci&oacute;n y tratamiento de aire</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;calefacci&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aire acondicionado<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"climatizacion.html\"><IMG src=\"img/productos/climatizacionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"compresoresDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"compresores.html\" class=\"productos\">Compresores / Generadores</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;paletas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pist&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tornillo<BR><BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;gasoil<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;gasolina<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"compresores.html\"><IMG src=\"img/productos/compresoresG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"construccionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"construccion.html\" class=\"productos\">Construcci&oacute;n</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;maquinaria<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;herramientas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;productos qu&iacute;micos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;consumibles<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"construccion.html\"><IMG src=\"img/productos/construccionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"electricidadDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"electricidad.html\" class=\"productos\">Electricidad</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;manguera<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;enrollacables<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;bases m&uacute;ltiples<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;herramientas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;iluminaci&oacute;n<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"electricidad.html\"><IMG src=\"img/productos/electricidadG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");

  document.write("                          <DIV id=\"embalajeDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"embalaje.html\" class=\"productos\">Embalaje</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cintas adhesivas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;flejadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;grapadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;film estirable<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"embalaje.html\"><IMG src=\"img/productos/embalajeG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"fijacionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"fijacion.html\" class=\"productos\">Fijaci&oacute;n</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tacos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;abrazaderas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;remaches<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pernos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pasadores<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"fijacion.html\"><IMG src=\"img/productos/fijacionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"corteDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"corte.html\" class=\"productos\">Herramienta de corte</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;brocas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;fresas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;coronas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;machos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;avellanadores<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;terrajas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;hojas de sierra<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"corte.html\"><IMG src=\"img/productos/corteG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"electricaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"electrica.html\" class=\"productos\">Herramienta el&eacute;ctrica</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;taladros<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;martillos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;amoladoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;lijadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;sierras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;fresadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;atornilladores<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"electrica.html\"><IMG src=\"img/productos/electricaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"manualDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"manual.html\" class=\"productos\">Herramienta manual</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;alicates<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tenazas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;llaves<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aprietos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cajas porta-herramientas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;destornilladores<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;extractores<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;martillos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cinceles<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"manual.html\"><IMG src=\"img/productos/manualG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"latiguillosDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"latiguillos.html\" class=\"productos\">Latiguillos</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;sanitarios<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;de baja, media y alta presi&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;resistente a temperaturas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"latiguillos.html\"><IMG src=\"img/productos/latiguillosG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"limpiezaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=250px valign=top>");
  document.write("                                  <BR><A href=\"limpieza.html\" class=\"productos\">Maquinaria y material de limpieza</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aspiradores<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;barredoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;fregadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;detergentes<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;trapos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;celulosas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"limpieza.html\"><IMG src=\"img/productos/limpiezaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"lubricantesDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"lubricantes.html\" class=\"productos\">Lubricantes</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aceite<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;grasas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;equipos de engrase<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"lubricantes.html\"><IMG src=\"img/productos/lubricantesG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");

  document.write("                          <DIV id=\"metrologiaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"metrologia.html\" class=\"productos\">Metrolog&iacute;a</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;calibres<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;micr&oacute;metros<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;medidores l&aacute;ser y ultrasonidos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;flex&oacute;metros<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;top&oacute;metros<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"metrologia.html\"><IMG src=\"img/productos/metrologiaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"pinturaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"pintura.html\" class=\"productos\">Pintura</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pinturas industriales<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;barnices<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;disolventes<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pistolas aerogr&aacute;ficas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pinceles y brochas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;accesorios<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"pintura.html\"><IMG src=\"img/productos/pinturaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"proteccionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"proteccion.html\" class=\"productos\">Protecci&oacute;n laboral</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;vestuario<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;calzado<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;v&iacute;as respiratorias<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;visual<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;auditiva<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;antica&iacute;das<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cascos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;se&ntilde;alizaci&oacute;n<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"proteccion.html\"><IMG src=\"img/productos/proteccionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"soldaduraDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"soldadura.html\" class=\"productos\">Soldadura</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;grupos electr&oacute;genos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;consumibles<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;accesorios<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;protecci&oacute;n<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"soldadura.html\"><IMG src=\"img/productos/soldaduraG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"tornilleriaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"tornilleria.html\" class=\"productos\">Torniller&iacute;a</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tornillos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;arandelas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tuercas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;varillas roscadas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;esp&aacute;rragos<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"tornilleria.html\"><IMG src=\"img/productos/tornilleriaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"transmisionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"transmision.html\" class=\"productos\">Transmisi&oacute;n</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;rodamientos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;correas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;retenes<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cadenas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"transmision.html\"><IMG src=\"img/productos/transmisionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"transporteDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"transporte.html\" class=\"productos\">Transporte y elevaci&oacute;n</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;transpaletas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;carretillas elevadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;carros<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;polipastos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;escaleras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;ruedas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"transporte.html\"><IMG src=\"img/productos/transporteG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"tubosDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"tubos.html\" class=\"productos\">Tubos y manguera</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aspiraci&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;l&iacute;quidos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;jard&iacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;alta presi&oacute;n<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"tubos.html\"><IMG src=\"img/productos/tubosG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  
  document.write("                        </DIV></TD>");
  document.write("                    </TR>");

  document.write("                    <TR>");
  document.write("                      <TD valing=bottom>");
  document.write("                        <IMG src=\"img/barraProductos.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD height=10px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=20px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Productos</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=30px>");
  document.write("                        <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:35px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  if (navigator.appName == "Netscape"){
    document.write("                      <TD align=right valign=bottom height=29px>");
  }else{
    document.write("                      <TD align=right valign=middle height=22px>");
  }
  document.write("                        <P class=\"direccion\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  
  //Espacio a la derecha de la pantalla
  document.write("                <TD>");
  document.write("                  <IMG src=\"img/transparente.gif\" style=\"width:50px\"></TD>");
  document.write("              </TR>");


  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior.gif\"></TD>");

  document.write("                      <TD valign=top align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-39-25-1)+";height:16px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:16px\"></TD>");
  }

  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:16px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:29px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:42px\"></TD>");
  }

  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");

  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// productos.html para 800 x 600
function paginaProductos800(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron800.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-59-16;
    barraInferior=ancho+493;
  }else{
    ancho=screen.width-493-59-20;
    barraInferior=ancho+493;
  }

  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:44px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen800.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=59px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");


  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=54px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu800.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomos800Selec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porque800Selec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcas800Selec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productos800Selec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletin800Selec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultas800Selec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contacto800Selec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/transparente.gif\" style=\"height:70px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/transparente.gif\" style=\"height:121px\"></TD>");
  }
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas800.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");

  document.write("                <TD width=35px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de familias de productos.
  document.write("                        <TABLE cellspacing=0 cellpadding=0 border=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"abrasivos.html\"><IMG name=\"abrasivos\" src=\"img/productos/abrasivos.gif\"");
  document.write("onMouseOut=\"cambiarImagen('abrasivos', 'img/productos/abrasivos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('abrasivos', 'img/productos/abrasivosSelec.gif');ocultarElementos();verElemento('abrasivosDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"adhesivos.html\"><IMG name=\"adhesivos\" src=\"img/productos/adhesivos.gif\"");
  document.write("onMouseOut=\"cambiarImagen('adhesivos', 'img/productos/adhesivos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('adhesivos', 'img/productos/adhesivosSelec.gif');ocultarElementos();verElemento('adhesivosDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"almacenaje.html\"><IMG name=\"almacenaje\" src=\"img/productos/almacenaje.gif\"");
  document.write("onMouseOut=\"cambiarImagen('almacenaje', 'img/productos/almacenaje.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('almacenaje', 'img/productos/almacenajeSelec.gif');ocultarElementos();verElemento('almacenajeDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"cerrajeria.html\"><IMG name=\"cerrajeria\" src=\"img/productos/cerrajeria.gif\"");
  document.write("onMouseOut=\"cambiarImagen('cerrajeria', 'img/productos/cerrajeria.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('cerrajeria', 'img/productos/cerrajeriaSelec.gif');ocultarElementos();verElemento('cerrajeriaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"climatizacion.html\"><IMG name=\"climatizacion\" src=\"img/productos/climatizacion.gif\"");
  document.write("onMouseOut=\"cambiarImagen('climatizacion', 'img/productos/climatizacion.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('climatizacion', 'img/productos/climatizacionSelec.gif');ocultarElementos();verElemento('climatizacionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"compresores.html\"><IMG name=\"compresores\" src=\"img/productos/compresores.gif\"");
  document.write("onMouseOut=\"cambiarImagen('compresores', 'img/productos/compresores.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('compresores', 'img/productos/compresoresSelec.gif');ocultarElementos();verElemento('compresoresDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"construccion.html\"><IMG name=\"construccion\" src=\"img/productos/construccion.gif\"");
  document.write("onMouseOut=\"cambiarImagen('construccion', 'img/productos/construccion.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('construccion', 'img/productos/construccionSelec.gif');ocultarElementos();verElemento('construccionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px width=70px>");
  document.write("                              <CENTER><A href=\"electricidad.html\"><IMG name=\"electricidad\" src=\"img/productos/electricidad.gif\"");
  document.write("onMouseOut=\"cambiarImagen('electricidad', 'img/productos/electricidad.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('electricidad', 'img/productos/electricidadSelec.gif');ocultarElementos();verElemento('electricidadDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Abrasivos</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Adhesivos</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Almacenaje</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Cerrajer&iacute;a</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Climatizaci&oacute;n/<BR>Aire</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Compresores/<BR>Generadores</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Construcci&oacute;n</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Electricidad</TD>");
  document.write("                          </TR>");

  document.write("                          <TR>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"embalaje.html\"><IMG name=\"embalaje\" src=\"img/productos/embalaje.gif\"");
  document.write("onMouseOut=\"cambiarImagen('embalaje', 'img/productos/embalaje.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('embalaje', 'img/productos/embalajeSelec.gif');ocultarElementos();verElemento('embalajeDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"fijacion.html\"><IMG name=\"fijacion\" src=\"img/productos/fijacion.gif\"");
  document.write("onMouseOut=\"cambiarImagen('fijacion', 'img/productos/fijacion.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('fijacion', 'img/productos/fijacionSelec.gif');ocultarElementos();verElemento('fijacionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"corte.html\"><IMG name=\"corte\" src=\"img/productos/corte.gif\"");
  document.write("onMouseOut=\"cambiarImagen('corte', 'img/productos/corte.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('corte', 'img/productos/corteSelec.gif');ocultarElementos();verElemento('corteDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"electrica.html\"><IMG name=\"electrica\" src=\"img/productos/electrica.gif\"");
  document.write("onMouseOut=\"cambiarImagen('electrica', 'img/productos/electrica.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('electrica', 'img/productos/electricaSelec.gif');ocultarElementos();verElemento('electricaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"manual.html\"><IMG name=\"manual\" src=\"img/productos/manual.gif\"");
  document.write("onMouseOut=\"cambiarImagen('manual', 'img/productos/manual.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('manual', 'img/productos/manualSelec.gif');ocultarElementos();verElemento('manualDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"latiguillos.html\"><IMG name=\"latiguillos\" src=\"img/productos/latiguillos.gif\"");
  document.write("onMouseOut=\"cambiarImagen('latiguillos', 'img/productos/latiguillos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('latiguillos', 'img/productos/latiguillosSelec.gif');ocultarElementos();verElemento('latiguillosDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"limpieza.html\"><IMG name=\"limpieza\" src=\"img/productos/limpieza.gif\"");
  document.write("onMouseOut=\"cambiarImagen('limpieza', 'img/productos/limpieza.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('limpieza', 'img/productos/limpiezaSelec.gif');ocultarElementos();verElemento('limpiezaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"lubricantes.html\"><IMG name=\"lubricantes\" src=\"img/productos/lubricantes.gif\"");
  document.write("onMouseOut=\"cambiarImagen('lubricantes', 'img/productos/lubricantes.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('lubricantes', 'img/productos/lubricantesSelec.gif');ocultarElementos();verElemento('lubricantesDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                          </TR>");

  document.write("                          <TR>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Embalaje</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Fijaci&oacute;n</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Herramienta de corte</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Herramienta el&eacute;ctrica</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Herramienta manual</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Latiguillos</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Limpieza</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Lubricantes</TD>");
  document.write("                          </TR>");

  document.write("                          <TR>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"metrologia.html\"><IMG name=\"metrologia\" src=\"img/productos/metrologia.gif\"");
  document.write("onMouseOut=\"cambiarImagen('metrologia', 'img/productos/metrologia.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('metrologia', 'img/productos/metrologiaSelec.gif');ocultarElementos();verElemento('metrologiaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"pintura.html\"><IMG name=\"pintura\" src=\"img/productos/pintura.gif\"");
  document.write("onMouseOut=\"cambiarImagen('pintura', 'img/productos/pintura.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('pintura', 'img/productos/pinturaSelec.gif');ocultarElementos();verElemento('pinturaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"proteccion.html\"><IMG name=\"proteccion\" src=\"img/productos/proteccion.gif\"");
  document.write("onMouseOut=\"cambiarImagen('proteccion', 'img/productos/proteccion.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('proteccion', 'img/productos/proteccionSelec.gif');ocultarElementos();verElemento('proteccionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"soldadura.html\"><IMG name=\"soldadura\" src=\"img/productos/soldadura.gif\"");
  document.write("onMouseOut=\"cambiarImagen('soldadura', 'img/productos/soldadura.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('soldadura', 'img/productos/soldaduraSelec.gif');ocultarElementos();verElemento('soldaduraDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"tornilleria.html\"><IMG name=\"tornilleria\" src=\"img/productos/tornilleria.gif\"");
  document.write("onMouseOut=\"cambiarImagen('tornilleria', 'img/productos/tornilleria.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('tornilleria', 'img/productos/tornilleriaSelec.gif');ocultarElementos();verElemento('tornilleriaDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px >");
  document.write("                              <CENTER><A href=\"transmision.html\"><IMG name=\"transmision\" src=\"img/productos/transmision.gif\"");
  document.write("onMouseOut=\"cambiarImagen('transmision', 'img/productos/transmision.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('transmision', 'img/productos/transmisionSelec.gif');ocultarElementos();verElemento('transmisionDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"transporte.html\"><IMG name=\"transporte\" src=\"img/productos/transporte.gif\"");
  document.write("onMouseOut=\"cambiarImagen('transporte', 'img/productos/transporte.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('transporte', 'img/productos/transporteSelec.gif');ocultarElementos();verElemento('transporteDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                            <TD valign=bottom height=35px>");
  document.write("                              <CENTER><A href=\"tubos.html\"><IMG name=\"tubos\" src=\"img/productos/tubos.gif\"");
  document.write("onMouseOut=\"cambiarImagen('tubos', 'img/productos/tubos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('tubos', 'img/productos/tubosSelec.gif');ocultarElementos();verElemento('tubosDiv','show','visible','visible');\"></A></CENTER></TD>");
  document.write("                          </TR>");

  document.write("                          <TR>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Metrolog&iacute;a</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Pintura</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Protecci&oacute;n laboral</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Soldadura</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Torniller&iacute;a</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Transmisi&oacute;n</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Transporte y elevaci&oacute;n</TD>");
  document.write("                            <TD valign=top>");
  document.write("                              <P class=\"textoProducto\">Tubos y manguera</TD>");
  document.write("                          </TR>");
  
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <IMG src=\"img/transparente.gif\" style=\"height:3px;\"></TD>");
  document.write("                          </TR>");

  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloProductos.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valing=top>");
  document.write("                        <IMG src=\"img/barraProductos.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");

  //Descripción de los productos.
  document.write("                    <TR>");
  document.write("                      <TD width=100%>");
  document.write("                        <DIV style=\"position:relative;top:0px;width:100%;height:165px;\">");
  document.write("                          <DIV id=\"abrasivosDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"abrasivos.html\" class=\"productos\">Abrasivos</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;lijas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pulido<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;abanicos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;discos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cerdas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;muelas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"abrasivos.html\"><IMG src=\"img/productos/abrasivosG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"adhesivosDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=250px valign=top>");
  document.write("                                  <BR><A href=\"adhesivos.html\" class=\"productos\">Adhesivos</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;colas de contacto<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cianoacrilatos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;barras termofusibles<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;maquinaria para aplicaci&oacute;n de pegamentos<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"adhesivos.html\"><IMG src=\"img/productos/adhesivosG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"almacenajeDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"almacenaje.html\" class=\"productos\">Almacenaje</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;estanter&iacute;as ranuradas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;estanter&iacute;as de media carga<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;paletizaci&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;envases met&aacute;licos y pl&aacute;sticos<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"almacenaje.html\"><IMG src=\"img/productos/almacenajeG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"cerrajeriaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"cerrajeria.html\" class=\"productos\">Cerrajer&iacute;a</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cerraduras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;manillas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;bombines<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cerrojos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;candados<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cajas fuertes<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;herrajes<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"cerrajeria.html\"><IMG src=\"img/productos/cerrajeriaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"climatizacionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=300px valign=top>");
  document.write("                                  <BR><A href=\"climatizacion.html\" class=\"productos\">Climatizaci&oacute;n y tratamiento de aire</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;calefacci&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aire acondicionado<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"climatizacion.html\"><IMG src=\"img/productos/climatizacionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"compresoresDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"compresores.html\" class=\"productos\">Compresores / Generadores</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;paletas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pist&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tornillo<BR><BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;gasoil<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;gasolina<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"compresores.html\"><IMG src=\"img/productos/compresoresG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"construccionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"construccion.html\" class=\"productos\">Construcci&oacute;n</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;maquinaria<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;herramientas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;productos qu&iacute;micos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;consumibles<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"construccion.html\"><IMG src=\"img/productos/construccionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"electricidadDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"electricidad.html\" class=\"productos\">Electricidad</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;manguera<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;enrollacables<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;bases m&uacute;ltiples<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;herramientas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;iluminaci&oacute;n<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"electricidad.html\"><IMG src=\"img/productos/electricidadG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");

  document.write("                          <DIV id=\"embalajeDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"embalaje.html\" class=\"productos\">Embalaje</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cintas adhesivas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;flejadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;grapadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;film estirable<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"embalaje.html\"><IMG src=\"img/productos/embalajeG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"fijacionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"fijacion.html\" class=\"productos\">Fijaci&oacute;n</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tacos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;abrazaderas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;remaches<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pernos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pasadores<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"fijacion.html\"><IMG src=\"img/productos/fijacionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"corteDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"corte.html\" class=\"productos\">Herramienta de corte</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;brocas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;fresas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;coronas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;machos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;avellanadores<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;terrajas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;hojas de sierra<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"corte.html\"><IMG src=\"img/productos/corteG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"electricaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"electrica.html\" class=\"productos\">Herramienta el&eacute;ctrica</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;taladros<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;martillos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;amoladoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;lijadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;sierras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;fresadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;atornilladores<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"electrica.html\"><IMG src=\"img/productos/electricaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"manualDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"manual.html\" class=\"productos\">Herramienta manual</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;alicates<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tenazas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;llaves<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aprietos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cajas porta-herramientas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;destornilladores<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;extractores<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;martillos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cinceles<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"manual.html\"><IMG src=\"img/productos/manualG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"latiguillosDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"latiguillos.html\" class=\"productos\">Latiguillos</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;sanitarios<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;de baja, media y alta presi&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;resistente a temperaturas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"latiguillos.html\"><IMG src=\"img/productos/latiguillosG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"limpiezaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=250px valign=top>");
  document.write("                                  <BR><A href=\"limpieza.html\" class=\"productos\">Maquinaria y material de limpieza</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aspiradores<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;barredoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;fregadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;detergentes<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;trapos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;celulosas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"limpieza.html\"><IMG src=\"img/productos/limpiezaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"lubricantesDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"lubricantes.html\" class=\"productos\">Lubricantes</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aceite<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;grasas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;equipos de engrase<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"lubricantes.html\"><IMG src=\"img/productos/lubricantesG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");

  document.write("                          <DIV id=\"metrologiaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"metrologia.html\" class=\"productos\">Metrolog&iacute;a</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;calibres<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;micr&oacute;metros<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;medidores l&aacute;ser y ultrasonidos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;flex&oacute;metros<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;top&oacute;metros<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"metrologia.html\"><IMG src=\"img/productos/metrologiaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"pinturaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"pintura.html\" class=\"productos\">Pintura</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pinturas industriales<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;barnices<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;disolventes<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pistolas aerogr&aacute;ficas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;pinceles y brochas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;accesorios<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"pintura.html\"><IMG src=\"img/productos/pinturaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"proteccionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"proteccion.html\" class=\"productos\">Protecci&oacute;n laboral</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;vestuario<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;calzado<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;v&iacute;as respiratorias<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;visual<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;auditiva<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;antica&iacute;das<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cascos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;se&ntilde;alizaci&oacute;n<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"proteccion.html\"><IMG src=\"img/productos/proteccionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"soldaduraDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"soldadura.html\" class=\"productos\">Soldadura</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;grupos electr&oacute;genos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;consumibles<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;accesorios<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;protecci&oacute;n<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"soldadura.html\"><IMG src=\"img/productos/soldaduraG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"tornilleriaDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"tornilleria.html\" class=\"productos\">Torniller&iacute;a</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tornillos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;arandelas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;tuercas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;varillas roscadas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;esp&aacute;rragos<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"tornilleria.html\"><IMG src=\"img/productos/tornilleriaG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"transmisionDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"transmision.html\" class=\"productos\">Transmisi&oacute;n</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;rodamientos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;correas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;retenes<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;cadenas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"transmision.html\"><IMG src=\"img/productos/transmisionG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"transporteDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"transporte.html\" class=\"productos\">Transporte y elevaci&oacute;n</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;transpaletas<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;carretillas elevadoras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;carros<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;polipastos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;escaleras<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;ruedas<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"transporte.html\"><IMG src=\"img/productos/transporteG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");
  document.write("                          <DIV id=\"tubosDiv\" style=\"position:absolute;top:0px;width:100%;visibility:hidden\">");
  document.write("                            <TABLE width=70% height=100% cellspacing=0 cellpadding=0>");
  document.write("                              <TR>");
  document.write("                                <TD height=150px width=200px valign=top>");
  document.write("                                  <BR><A href=\"tubos.html\" class=\"productos\">Tubos y manguera</A><P class=\"contenidoTexto\">");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;aspiraci&oacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;l&iacute;quidos<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;jard&iacute;n<BR>");
  document.write("                                   &nbsp;&nbsp;&nbsp;&nbsp;<IMG src=\"img/punto.gif\">&nbsp;&nbsp;&nbsp;alta presi&oacute;n<BR></TD>");
  document.write("                                <TD align=right valign=middle>");
  document.write("                                  <A href=\"tubos.html\"><IMG src=\"img/productos/tubosG.jpg\"></A></TD>");
  document.write("                              </TR>");
  document.write("                            </TABLE>");
  document.write("                          </DIV>");

  document.write("                        </DIV></TD>");
  document.write("                    </TR>");

  document.write("                    <TR>");
  document.write("                      <TD valing=bottom>");
  document.write("                        <IMG src=\"img/barraProductos.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD height=10px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=middle height=30px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Productos</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=20px>");
  document.write("                        <IMG src=\"img/logosEmpresas800.gif\" style=\"position:relative;right:75px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=20px>");
  document.write("                        <P class=\"direccion800\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior800.gif\"></TD>");
  document.write("                      <TD valign=bottom align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-8)+";height:13px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-7)+";height:13px\"></TD>");
  }
  document.write("                      <TD valign=bottom align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:13px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:25px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:20px\"></TD>");
  }
  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// boletin.html para 1024 x 768
function paginaBoletin1024(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-100;
  }else{
    ancho=screen.width-493-100-20;
  }
  barraInferior=ancho+493;
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:74px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=100px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=54px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomosSelec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porqueSelec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcasSelec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productosSelec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletinSelec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultasSelec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contactoSelec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD>");
  document.write("                        <IMG src=\"img/transparente.gif\" style=\"height:10px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("                <TD width=90px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=45px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Ofertas y cat&aacute;logos</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=55px>");
  document.write("                        <IMG src=\"img/tituloBoletin.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <P class=\"contenidoTexto\">Consulte nuestras ofertas y cat&aacute;logos.<BR><BR></P>");
  document.write("                        <TABLE height=30% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <P class=boletin>Ofertas de la semana</p></TD>");
  document.write("                            <TD valign=middle align=center>");
  document.write("                              <IMG src=\"img/pdf.gif\"></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <TABLE cellspacing=0 cellpadding=0>");
  document.write("                                <TR>");
  document.write("                                  <TD width=30px></TD>");
  document.write("                                  <TD>");
  document.write("                                    <LI><A class=boletin href=\"ofertasDIRrioja1.pdf\">Parte 1</A></TD>");
  document.write("                                </TR>");
  document.write("                              </TABLE></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <TABLE cellspacing=0 cellpadding=0>");
  document.write("                                <TR>");
  document.write("                                  <TD width=30px></TD>");
  document.write("                                  <TD>");
  document.write("                                    <LI><A class=boletin href=\"ofertasDIRrioja2.pdf\">Parte 2</A></TD>");
  document.write("                                </TR>");
  document.write("                              </TABLE></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <P class=boletin>Ofertas profesionales</P></TD>");
   document.write("                           <TD valign=middle align=center>");
  document.write("                              <IMG src=\"img/pdf.gif\"></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <TABLE cellspacing=0 cellpadding=0>");
  document.write("                                <TR>");
  document.write("                                  <TD width=30px></TD>");
  document.write("                                  <TD>");
  document.write("                                    <LI><A class=boletin href=\"ofertasProfesDIRrioja1.pdf\">Parte 1</A></TD>");
  document.write("                                </TR>");
  document.write("                              </TABLE></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <TABLE cellspacing=0 cellpadding=0>");
  document.write("                                <TR>");
  document.write("                                  <TD width=30px></TD>");
  document.write("                                  <TD>");
  document.write("                                    <LI><A class=boletin href=\"ofertasProfesDIRrioja2.pdf\">Parte 2</A></TD>");
  document.write("                                </TR>");
  document.write("                              </TABLE></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=40px>");
  document.write("                              <A class=boletin href=\"catalogoDIRrioja.pdf\">Cat&aacute;logo de productos</A></TD>");
  document.write("                            <TD valign=middle align=center>");
  document.write("                              <IMG src=\"img/pdf.gif\"></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=75px>");
  document.write("                              <A class=boletin href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=_blank>Descargar Adobe Acrobat Reader</A></TD>");
  document.write("                            <TD width=10px></TD>");
  document.write("                            <TD valign=middle align=center>");
  document.write("                              <IMG src=\"img/obtenerAReader.gif\"></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=20px>");
  document.write("                        <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:35px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=10px>");
  document.write("                        <P class=\"direccion\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");

  //Espacio a la derecha de la pantalla
  document.write("               <TD>");
  document.write("                 <IMG src=\"img/transparente.gif\" style=\"width:50px\"></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior.gif\"></TD>");

  document.write("                      <TD valign=top align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-39-25-1)+";height:16px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:16px\"></TD>");
  }

  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:16px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:48px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:42px\"></TD>");
  }

  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");

  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");

}

//////////////////////////////////////////////////////////////////////////////////
// boletin.html para 800 x 600
function paginaBoletin800(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron800.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-59-16;
    barraInferior=ancho+493;
  }else{
    ancho=screen.width-493-59-20;
    barraInferior=ancho+493;
  }

  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:44px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen800.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=59px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=54px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu800.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomos800Selec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porque800Selec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcas800Selec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productos800Selec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletin800Selec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultas800Selec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contacto800Selec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas800.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("                <TD width=35px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=15px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=30px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Ofertas y cat&aacute;logos</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloBoletin.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <P class=\"contenidoTexto\"><BR>Consulte nuestras ofertas y cat&aacute;logos.<BR><BR></P>");
  document.write("                        <TABLE height=30% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <P class=boletin>Ofertas de la semana</p></TD>");
  document.write("                            <TD valign=middle align=center>");
  document.write("                              <IMG src=\"img/pdf.gif\"></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <TABLE cellspacing=0 cellpadding=0>");
  document.write("                                <TR>");
  document.write("                                  <TD width=30px></TD>");
  document.write("                                  <TD>");
  document.write("                                    <LI><A class=boletin href=\"ofertasDIRrioja1.pdf\">Parte 1</A></TD>");
  document.write("                                </TR>");
  document.write("                              </TABLE></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <TABLE cellspacing=0 cellpadding=0>");
  document.write("                                <TR>");
  document.write("                                  <TD width=30px></TD>");
  document.write("                                  <TD>");
  document.write("                                    <LI><A class=boletin href=\"ofertasDIRrioja2.pdf\">Parte 2</A></TD>");
  document.write("                                </TR>");
  document.write("                              </TABLE></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <P class=boletin>Ofertas profesionales</P></TD>");
  document.write("                            <TD valign=middle align=center>");
  document.write("                              <IMG src=\"img/pdf.gif\"></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <TABLE cellspacing=0 cellpadding=0>");
  document.write("                                <TR>");
  document.write("                                  <TD width=30px></TD>");
  document.write("                                  <TD>");
  document.write("                                    <LI><A class=boletin href=\"ofertasProfesDIRrioja1.pdf\">Parte 1</A></TD>");
  document.write("                                </TR>");
  document.write("                              </TABLE></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <TABLE cellspacing=0 cellpadding=0>");
  document.write("                                <TR>");
  document.write("                                  <TD width=30px></TD>");
  document.write("                                  <TD>");
  document.write("                                    <LI><A class=boletin href=\"ofertasProfesDIRrioja2.pdf\">Parte 2</A></TD>");
  document.write("                                </TR>");
  document.write("                              </TABLE></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=30px>");
  document.write("                              <A class=boletin href=\"catalogoDIRrioja.pdf\">Cat&aacute;logo de productos</A></TD>");
  document.write("                            <TD valign=middle align=center>");
  document.write("                              <IMG src=\"img/pdf.gif\"></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD valign=middle height=75px>");
  document.write("                              <A class=boletin href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=_blank>Descargar Adobe Acrobat Reader</A></TD>");
  document.write("                            <TD width=10px></TD>");
  document.write("                            <TD valign=middle align=center>");
  document.write("                              <IMG src=\"img/obtenerAReader.gif\"></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=20px>");
  document.write("                        <IMG src=\"img/logosEmpresas800.gif\" style=\"position:relative;right:75px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=20px>");
  document.write("                        <P class=\"direccion800\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior800.gif\"></TD>");
  document.write("                      <TD valign=bottom align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-8)+";height:13px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-7)+";height:13px\"></TD>");
  }
  document.write("                      <TD valign=bottom align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:13px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:25px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:20px\"></TD>");
  }
  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// consultas.html para 1024 x 768
function paginaConsultas1024(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-100;
  }else{
    ancho=screen.width-493-100-20;
  }
  barraInferior=ancho+493;
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:74px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=100px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }
  document.write("              <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=71px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomosSelec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porqueSelec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcasSelec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productosSelec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletinSelec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultasSelec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contactoSelec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("                <TD width=90px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=45px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Consultas</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=55px>");
  document.write("                        <IMG src=\"img/tituloConsultas.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <FORM name=\"contactar\" method=\"post\" action=\"correoG.php\">");
  document.write("                          <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px>");
  document.write("                                <P class=\"contenidoTexto\">Departamento consultado</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <SELECT name=\"departamento\">");
  document.write("                                  <OPTION selected>Atención al cliente");
  document.write("                                  <OPTION>Contabilidad");
  document.write("                                  <OPTION>Compras");
  document.write("                                </SELECT></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px>");
  document.write("                                <P class=\"contenidoTexto\">Nombre</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"nombre\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px>");
  document.write("                                <P class=\"contenidoTexto\">Empresa</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"empresa\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px>");
  document.write("                                <P class=\"contenidoTexto\">Direcci&oacute;n</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"direccion\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px>");
  document.write("                                <P class=\"contenidoTexto\">Tel&eacute;fono</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"telefono\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px>");
  document.write("                                <P class=\"contenidoTexto\">Fax</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"fax\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px>");
  document.write("                                <P class=\"contenidoTexto\">E-mail</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"email\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px>");
  document.write("                                <P class=\"contenidoTexto\">Consulta</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <TEXTAREA name=\"contenido\" cols=38 rows=4></TEXTAREA></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=30px colspan=2>");
  document.write("                                <P class=\"contenidoTexto\"><BR>Para poder responderle es necesario que indique la consulta y al menos uno de los siguientes datos: direcci&oacute;n, tel&eacute;fono, fax, e-mail.</P></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=bottom align=middle colspan=2 height=30px>");
  document.write("                                <TABLE width=50% cellspacing=0 cellpadding=0>");
  document.write("                                  <TR>");
  document.write("                                    <TD valign=top align=center>");
  document.write("                                      <INPUT class=\"boton\" type=\"reset\" name=\"limpiar\" value=\"Limpiar\"></TD>");
  document.write("                                    <TD valign=top align=center>");
  document.write("                                      <INPUT class=\"boton\" type=\"submit\" name=\"consultar\" value=\"Consultar\" onclick=\"return(valida());\"></TD>");
  document.write("                                  </TR>");
  document.write("                                </TABLE></TD>");
  document.write("                            </TR>");
  document.write("                          </TABLE>");
  document.write("                        </FORM></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=20px>");
  document.write("                        <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:35px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=10px>");
  document.write("                        <P class=\"direccion\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  
  //Espacio a la derecha de la pantalla
  document.write("               <TD>");
  document.write("                 <IMG src=\"img/transparente.gif\" style=\"width:50px\"></TD>");
  document.write("          </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior.gif\"></TD>");

  document.write("                      <TD valign=top align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-39-25-1)+";height:16px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:16px\"></TD>");
  }

  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:16px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:29px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:42px\"></TD>");
  }

  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");

  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// consultas.html para 800 x 600
function paginaConsultas800(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron800.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-59-16;
    barraInferior=ancho+493;
  }else{
    ancho=screen.width-493-59-20;
    barraInferior=ancho+493;
  }

  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:44px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen800.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=59px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=54px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu800.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomos800Selec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porque800Selec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcas800Selec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productos800Selec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletin800Selec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultas800Selec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contacto800Selec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas800.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("                <TD width=35px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=15px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=30px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Consultas</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=50px>");
  document.write("                        <IMG src=\"img/tituloConsultas.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <FORM name=\"contactar\" method=\"post\" action=\"correoP.php\">");
  document.write("                          <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px>");
  document.write("                                <P class=\"contenidoTexto\">Departamento consultado</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <SELECT name=\"departamento\">");
  document.write("                                  <OPTION selected>Atención al cliente");
  document.write("                                  <OPTION>Contabilidad");
  document.write("                                  <OPTION>Compras");
  document.write("                                </SELECT></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px>");
  document.write("                                <P class=\"contenidoTexto\">Nombre</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"nombre\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px>");
  document.write("                                <P class=\"contenidoTexto\">Empresa</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"empresa\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px>");
  document.write("                                <P class=\"contenidoTexto\">Direcci&oacute;n</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"direccion\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px>");
  document.write("                                <P class=\"contenidoTexto\">Tel&eacute;fono</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"telefono\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px>");
  document.write("                                <P class=\"contenidoTexto\">Fax</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"fax\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px>");
  document.write("                                <P class=\"contenidoTexto\">E-mail</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <INPUT type=\"text\" name=\"email\" size=50></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px>");
  document.write("                                <P class=\"contenidoTexto\">Consulta</P></TD>");
  document.write("                              <TD valign=top>");
  document.write("                                <TEXTAREA name=\"contenido\" cols=38 rows=4></TEXTAREA></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=top width=30% height=25px colspan=2>");
  document.write("                                <P class=\"contenidoTexto\"><BR>Para poder responderle es necesario que indique la consulta y al menos uno de los siguientes datos: direcci&oacute;n, tel&eacute;fono, fax, e-mail.</P></TD>");
  document.write("                            </TR>");
  document.write("                            <TR>");
  document.write("                              <TD valign=bottom align=middle colspan=2 height=30px>");
  document.write("                                <TABLE width=50% cellspacing=0 cellpadding=0>");
  document.write("                                  <TR>");
  document.write("                                    <TD valign=top align=center>");
  document.write("                                      <INPUT class=\"boton\" type=\"reset\" name=\"limpiar\" value=\"Limpiar\"></TD>");
  document.write("                                    <TD valign=top align=center>");
  document.write("                                      <INPUT class=\"boton\" type=\"submit\" name=\"consultar\" value=\"Consultar\" onclick=\"return(valida());\"></TD>");
  document.write("                                  </TR>");
  document.write("                                </TABLE></TD>");
  document.write("                            </TR>");
  document.write("                          </TABLE>");
  document.write("                        </FORM></TD>");
  document.write("                    </TR>");

  document.write("                    <TR>");
  document.write("                      <TD align=right valign=bottom height=60px>");
  document.write("                        <IMG src=\"img/logosEmpresas800.gif\" style=\"position:relative;right:75px;\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=middle height=20px>");
  document.write("                        <P class=\"direccion800\">dir rioja s.l. carretera quel, 36 arnedo (la rioja) t. 941 383 466</P></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");
  document.write("              </TR>");
  
  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior800.gif\"></TD>");
  document.write("                      <TD valign=bottom align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-8)+";height:13px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-7)+";height:13px\"></TD>");
  }
  document.write("                      <TD valign=bottom align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:13px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:25px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:20px\"></TD>");
  }
  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// contacto.html para 1024 x 768
function paginaContacto1024(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-100;
  }else{
    ancho=screen.width-493-100-20;
  }
  barraInferior=ancho+493;
  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:74px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=100px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:100px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=71px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomosSelec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porqueSelec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcasSelec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productosSelec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletinSelec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultasSelec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contactoSelec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD>");
  document.write("                        <IMG src=\"img/transparente.gif\" style=\"height:10px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("                <TD width=90px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                <TD align=right>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=20px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=45px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Contacto</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=55px>");
  document.write("                        <IMG src=\"img/tituloContacto.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD width=100% height=100% align=middle valign=top>");
  document.write("                        <DIV style=\"position:relative;top:0px;left:0px;\">");
//  document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"300\" height=\"200\" id=\"contacto\" align=\"middle\">");
  document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
  document.write("<param name=\"movie\" value=\"contacto1024.swf\" />");
  document.write("<param name=\"quality\" value=\"high\" />");
  document.write("<param name=\"bgcolor\" value=\"#ffffff\" />");
  document.write("<embed src=\"contacto1024.swf\" quality=\"high\" bgcolor=\"#ffffff\" width=\"300\" height=\"200\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
  document.write("                        </DIV></TD>");
  document.write("                    </TR>");

  document.write("                    <TR>");
  document.write("                      <TD height=5px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <P class=\"contacto\">PULSE SOBRE ARNEDO PARA VER UN PLANO DETALLADO DE DIR RIOJA<BR><BR></TD>");
  document.write("                    </TR>");
  
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <P class=\"contacto\">dir rioja s.l. carretera quel, 36 arnedo (la rioja)<BR><BR>tel&eacute;fono 941 383 466,  fax 941 383 205,  e-mail dirioja@dirioja.com</P><BR></TD>");
  document.write("                    </TR>");
  
  document.write("                    <TR>");
  document.write("                      <TD align=right valign=top height=60px>");
  document.write("                        <IMG src=\"img/logosEmpresas.gif\" style=\"position:relative;right:35px;\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  //Espacio a la derecha de la pantalla
  document.write("                <TD>");
  document.write("                  <IMG src=\"img/transparente.gif\" style=\"width:50px\"></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior.gif\"></TD>");

  document.write("                      <TD valign=top align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-39-25-1)+";height:16px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:100%;height:16px\"></TD>");
  }

  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:16px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:29px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:42px\"></TD>");
  }

  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

//////////////////////////////////////////////////////////////////////////////////
// contacto.html para 800 x 600
function paginaContacto800(){
  //Tabla para barra de colores superior.
  document.write("<TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("  <TR valign=top>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoMarron800.gif\"></TD>");
  document.write("    <TD align=left>");
  if (navigator.appName == "Netscape"){
    ancho=screen.width-493-59-16;
    barraInferior=ancho+493;
  }else{
    ancho=screen.width-493-59-20;
    barraInferior=ancho+493;
  }

  document.write("      <IMG src=\"img/encabezadoVerde.gif\" style=\"height:44px;width:" + ancho + "px;\"></TD>");
  document.write("    <TD align=left>");
  document.write("      <IMG src=\"img/encabezadoImagen800.gif\"></TD>");
  document.write("    <TD></TD>");
  document.write("  </TR>");

  //Tabla para resto de la página.
  document.write("  <TR>");
  document.write("    <TD colspan=3>");
  document.write("      <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("        <TR>");
  document.write("          <TD valign=top width=59px height=100%>");
  if (navigator.appName == "Netscape"){
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }else{
    document.write("            <IMG src=\"img/paredIzda.gif\" style=\"width:59px;height:100%;\"></TD>");
  }
  document.write("          <TD align=left valign=top>");

  //Tabla cuerpo.
  document.write("            <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("              <TR>");
  document.write("                <TD valign=top>");
  //Tabla para la zona izquierda del cuerpo.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top height=54px>");
  document.write("                        <A href=\"inicio.html\"><IMG src=\"img/logoMenu800.gif\"></A></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  //Tabla de botones del menú.
  document.write("                        <TABLE cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"quienes.html\"");
  document.write("onMouseOut=\"cambiarImagen('quienesSomos', 'img/quienesSomos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('quienesSomos', 'img/quienesSomos800Selec.gif');\">");
  document.write("<IMG name=\"quienesSomos\" src=\"img/quienesSomos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"porque.html\"");
  document.write("onMouseOut=\"cambiarImagen('porque', 'img/porque800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('porque', 'img/porque800Selec.gif');\">");
  document.write("<IMG name=\"porque\" src=\"img/porque800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"marcas.html\"");
  document.write("onMouseOut=\"cambiarImagen('marcas', 'img/marcas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('marcas', 'img/marcas800Selec.gif');\">");
  document.write("<IMG name=\"marcas\" src=\"img/marcas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"productos.html\"");
  document.write("onMouseOut=\"cambiarImagen('productos', 'img/productos800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('productos', 'img/productos800Selec.gif');\">");
  document.write("<IMG name=\"productos\" src=\"img/productos800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"boletin.html\"");
  document.write("onMouseOut=\"cambiarImagen('boletin', 'img/boletin800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('boletin', 'img/boletin800Selec.gif');\">");
  document.write("<IMG name=\"boletin\" src=\"img/boletin800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"consultas.html\"");
  document.write("onMouseOut=\"cambiarImagen('consultas', 'img/consultas800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('consultas', 'img/consultas800Selec.gif');\">");
  document.write("<IMG name=\"consultas\" src=\"img/consultas800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                          <TR>");
  document.write("                            <TD>");
  document.write("                              <A href=\"contacto.html\"");
  document.write("onMouseOut=\"cambiarImagen('contacto', 'img/contacto800.gif');\"");
  document.write("onMouseOver=\"cambiarImagen('contacto', 'img/contacto800Selec.gif');\">");
  document.write("<IMG name=\"contacto\" src=\"img/contacto800.gif\" style=\"position:relative;left:10px;\"></A></TD>");
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=2 valign=bottom>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeBolas800.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");

  document.write("                <TD width=35px>");
  document.write("                  <IMG src=\"img/transparente.gif\"></TD>");

  document.write("                <TD align=right>");
  //Tabla para la zona derecha de la pantalla.
  document.write("                  <TABLE width=100% height=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD height=15px>");
  document.write("                        <IMG src=\"img/transparente.gif\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD align=left valign=top height=30px>");
  document.write("                        <P class=\"tituloRuta\"><A class=\"home\" href=\"inicio.html\">Home</A>>Contacto</P></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <IMG src=\"img/tituloContacto.gif\" style=\"right:50px\"></TD>");
  document.write("                    </TR>");
  //Tabla de contenido.
  document.write("                    <TR>");
  document.write("                      <TD width=100% height=100% align=middle valign=top>");
  document.write("                        <DIV style=\"position:relative;top:0px;left:0px;\">");
//  document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"300\" height=\"200\" id=\"contacto\" align=\"middle\">");
  document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
  document.write("<param name=\"movie\" value=\"contacto800.swf\" />");
  document.write("<param name=\"quality\" value=\"high\" />");
  document.write("<param name=\"bgcolor\" value=\"#ffffff\" />");
  document.write("<embed src=\"contacto800.swf\" quality=\"high\" bgcolor=\"#ffffff\" width=\"250\" height=\"170\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
  document.write("                        </DIV></TD>");
  document.write("                    </TR>");

  document.write("                    <TR>");
  document.write("                      <TD valign=top>");
  document.write("                        <P class=\"contacto\">PULSE SOBRE ARNEDO PARA VER UN PLANO DETALLADO DE DIR RIOJA<BR><BR></TD>");
  document.write("                    </TR>");

  document.write("                    <TR>");
  document.write("                      <TD valign=bottom>");
  document.write("                        <P class=\"contacto\">dir rioja s.l. carretera quel, 36 arnedo (la rioja)<BR><BR>tel&eacute;fono 941 383 466,  fax 941 383 205,  e-mail dirioja@dirioja.com</P><BR></TD>");
  document.write("                    </TR>");

  document.write("                    <TR>");
  document.write("                      <TD align=right valign=top>");
  document.write("                        <IMG src=\"img/logosEmpresas800.gif\" style=\"position:relative;right:75px;\"></TD>");
  document.write("                    </TR>");
  document.write("                 </TABLE></TD>");
  document.write("              </TR>");

  //Parte inferior de la pantalla: llave, línea de llave y fin.
  document.write("              <TR>");
  document.write("                <TD colspan=4 valign=top align=left>");
  document.write("                  <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                    <TR>");
  document.write("                      <TD valign=top align=left>");
  document.write("                        <IMG src=\"img/ribeteLlaveVerdeInferior800.gif\"></TD>");
  document.write("                      <TD valign=bottom align=left width=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-8)+";height:13px\"></TD>");
  }else{
    document.write("                        <IMG src=\"img/ribeteLinea.gif\" style=\"width:" + (barraInferior-29-13-7)+";height:13px\"></TD>");
  }
  document.write("                      <TD valign=bottom align=left>");
  document.write("                        <IMG src=\"img/ribeteFin.gif\" style=\"height:13px\"></TD>");
  document.write("                    </TR>");
  document.write("                    <TR>");
  document.write("                      <TD colspan=3>");
  document.write("                        <TABLE width=100% cellspacing=0 cellpadding=0>");
  document.write("                          <TR>");
  document.write("                            <TD valign=top align=left widht=100%>");
  if (navigator.appName == "Netscape"){
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:25px\"></TD>");
  }else{
    document.write("                              <IMG src=\"img/encabezadoVerde.gif\" style=\"width:100%;height:20px\"></TD>");
  }
  //Fin parte inferior de la pantalla.
  document.write("                          </TR>");
  document.write("                        </TABLE></TD>");
  document.write("                    </TR>");
  document.write("                  </TABLE></TD>");
  document.write("              </TR>");
  document.write("            </TABLE></TD>");

  //Fin tabla cuerpo.
  document.write("        </TR>");
  document.write("      </TABLE></TD>");
  document.write("  </TR></TABLE>");
}

function menu1024(){
  menu1 = new Image();
  menu1.src = "img/quienesSomos.gif";
  menu2 = new Image();
  menu2.src = "img/quienesSomosSelec.gif";
  menu3 = new Image();
  menu3.src = "img/porque.gif";
  menu4 = new Image();
  menu4.src = "img/porqueSelec.gif";
  menu5 = new Image();
  menu5.src = "img/marcas.gif";
  menu6 = new Image();
  menu6.src = "img/marcasSelec.gif";
  menu7 = new Image();
  menu7.src = "img/productos.gif";
  menu8 = new Image();
  menu8.src = "img/productosSelec.gif";
  menu9 = new Image();
  menu9.src = "img/boletin.gif";
  menu10 = new Image();
  menu10.src = "img/boletinSelec.gif";
  menu11 = new Image();
  menu11.src = "img/consultas.gif";
  menu12 = new Image();
  menu12.src = "img/consultasSelec.gif";
  menu13 = new Image();
  menu13.src = "img/contacto.gif";
  menu14 = new Image();
  menu14.src = "img/contactoSelec.gif";
}

function menu800(){
  menu1 = new Image();
  menu1.src = "img/quienesSomos800.gif";
  menu2 = new Image();
  menu2.src = "img/quienesSomos800Selec.gif";
  menu3 = new Image();
  menu3.src = "img/porque800.gif";
  menu4 = new Image();
  menu4.src = "img/porque800Selec.gif";
  menu5 = new Image();
  menu5.src = "img/marcas800.gif";
  menu6 = new Image();
  menu6.src = "img/marcas800Selec.gif";
  menu7 = new Image();
  menu7.src = "img/productos800.gif";
  menu8 = new Image();
  menu8.src = "img/productos800Selec.gif";
  menu9 = new Image();
  menu9.src = "img/boletin800.gif";
  menu10 = new Image();
  menu10.src = "img/boletin800Selec.gif";
  menu11 = new Image();
  menu11.src = "img/consultas800.gif";
  menu12 = new Image();
  menu12.src = "img/consultas800Selec.gif";
  menu13 = new Image();
  menu13.src = "img/contacto800.gif";
  menu14 = new Image();
  menu14.src = "img/contacto800Selec.gif";
}
