//<!--
// --------------------------------------------------------------------------------------------------------------------------
function logoanimado_ver() {
  if (false&&ms) {
    txt='';
    txt+='<HTML>\n';
    txt+='<'+'HEAD>\n';
    txt+='<'+'SCRIPT SRC="logoanimado.js"><'+'/SCRIPT>\n';
    txt+='<'+'/HEAD>\n';
    txt+='<BODY>\n';
    txt+='<DIV ID="Todo">\n';
    txt+='<STYLE>BODY, #Todo { margin: 0; border: 0; padding: 0; overflow: hidden; margin-top: -20px; background-color: #FFFF80; }</STYLE>\n';
    txt+='<'+'SCRIPT>\n';
    txt+='ancho = screen.Width;\n';
    txt+='alto=screen.Height+20;\n';
//    txt+='logoanimado(ancho, alto);\n';
txt+='setTimeout(\'logoanimado(ancho,alto)\', 1000);\n';
    txt+='<'+'/SCRIPT>\n';
    txt+='</DIV>\n';
    txt+='<'+'SCRIPT>\n';
    txt+='js = "self.close();";\n';
    txt+='setTimeout(js, 10000);\n';
    txt+='<'+'/SCRIPT>\n';
    txt+='</BODY>\n';
    txt+='</HTML>\n';
    vtn= window.open('', 'vtn', 'fullscreen=yes, scrollbars=no');
    ventana=vtn.document;
    ventana.writeln(txt);
  }
  return true;
}
// --------------------------------------------------------------------------------------------------------------------------
function logoanimado(ancho, alto, ref) {
  document.writeln('<STYLE>');
  document.writeln('#CentradaLS { z-index: 0; position:absolute; top:50%; left:50%; width:'+ancho+'px; height:400px; margin-left:-'+(ancho/2)+'px; margin-top:-'+(alto/2)+'px; }');
  document.writeln('#Tapa A {');
  document.writeln('  margin:0; padding:0; border:0; ');
  document.writeln('  z-index: 1; text-align: center; position: absolute; top:0; left:0; width:100%; height:100%;');
  document.writeln('}');
  document.writeln('</STYLE>');
  document.writeln('<DIV CLASS="foto" ID="CentradaLS">');
  document.writeln('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH="'+ancho+'" HEIGHT="'+alto+'">');
  document.writeln('  <PARAM NAME="movie" VALUE="logoanimado.swf">');
  document.writeln('  <PARAM NAME="quality" VALUE="high">');
  document.writeln('  <PARAM NAME="bgcolor" VALUE="#00356C">');
  document.writeln('  <param name="WMode" value="Transparent">');
  document.writeln('  <EMBED SRC="logoanimado.swf" wmode="transparent" WIDTH="'+ancho+'px" HEIGHT="'+alto+'px" QUALITY="high" BGCOLOR="#FFFFFF" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>');
  document.writeln('</OBJECT>');
  document.writeln('</DIV>');
  document.writeln('<DIV ID="tapa">');
  if (!ref||ref=='') {
    document.writeln('<A HREF="#" STYLE="width:100%; height:100%;" ONCLICK="self.close();">');
  } else {
    document.writeln('<A HREF="'+ref+'" STYLE="width:100%; height:100%;" ONCLICK="return logoanimado_ver();">');
  }
  document.writeln('<IMG SRC="/comun/transparente.gif" STYLE="width:100%; height:100%;" />');
  document.writeln('</A>');
  document.writeln('</DIV>');
}
// --------------------------------------------------------------------------------------------------------------------------
//-->