function VentanaTope(icono,titulo,subtitulo,ides,iden,idde,altura)
{
  // Encabezado y título de la ventana
  document.write("<TABLE height=25 cellSpacing=0 cellPadding=0 width='100%' class=TopeVentana border=0><TR>");
  document.write("<TD noWrap width='100%'>");

  if (icono!=null)
  {
    document.write("<IMG SRC='"+icono+"' border=0>");
  }
  document.write("&nbsp;"+titulo+"</TD><TD style='font-size:8PT;' noWrap>");
  if (subtitulo!=null)
  {
    document.write("<I>"+subtitulo+"</I>&nbsp;");
  }
  if ((ides!=null)&&(iden!=null)&&(idde!=null))
  {
    document.write("&nbsp;&nbsp;<A HREF='javascript:;' onClick='document.getElementById(\""+ides+"\").style.display=\"block\";document.getElementById(\""+idde+"\").style.display=\"none\";document.getElementById(\""+iden+"\").style.display=\"none\";' ><img src='gif/flagVene.gif' title='en español' alt='ES' border=0></a>&nbsp;");
    document.write("<A HREF='javascript:;' onClick='document.getElementById(\""+iden+"\").style.display=\"block\";document.getElementById(\""+ides+"\").style.display=\"none\";document.getElementById(\""+idde+"\").style.display=\"none\";' ><img src='gif/flagCan.gif' title='in english' alt='EN' border=0></a>&nbsp;");
    document.write("<A HREF='javascript:;' onClick='document.getElementById(\""+idde+"\").style.display=\"block\";document.getElementById(\""+ides+"\").style.display=\"none\";document.getElementById(\""+iden+"\").style.display=\"none\";' ><img src='gif/flagAlem.gif' title='auf Deutsch' alt='DE' border=0></a>&nbsp;");
  }
  
  document.write("</TD></TR></TABLE>");

  // Ventana interor para el contenido
  document.write("<TABLE cellSpacing=1 width='100%' bgColor=#8A7886 border=0><tr><td>");
  if (altura>0)
  {
    document.write("<div style='position:relative; width:100%; height:"+altura+"px; z-index:1; overflow: auto'>");
  }
  document.write("<TABLE class=ContenidoVentana cellPadding=10 width='100%' border=0><tr><td>");
}

function VentanaFondo(altura,ides,iden,idde)
{
  document.write("</td></tr></table>");
  if (altura!=null)
  {
    document.write("</div>");
  }
  document.write("</td></tr></table>");

  if ((ides!=null)&&(iden!=null)&&(idde!=null))
  {
    if(navigator.userLanguage.indexOf("de")>-1)
    { 
      document.getElementById(idde).style.display='block';
      document.getElementById(iden).style.display='none'; 
      document.getElementById(ides).style.display='none'; 
    }
    else
    {
      if(navigator.userLanguage.indexOf("es")>-1)
      { 
        document.getElementById(ides).style.display='block';
        document.getElementById(iden).style.display='none'; 
        document.getElementById(idde).style.display='none'; 
      }
      else
      { 
        document.getElementById(iden).style.display='block';
        document.getElementById(ides).style.display='none'; 
        document.getElementById(idde).style.display='none'; 
      }
    }
  }
}

