<!-- Begin
Mensage = "Soluciones-para  incorporar-su  negocio-a  INTERNET!"; // separar con guion "-".
colours = new Array('ff00ff','408040','ff0000','00ff40','804000'); // Fiusha, verde, Rojo, Azul, Marron, Pick your colors, any amount.
URLinicio = "Portada.html"
siZe = 15; //Explorer only! can be outrageous size.
Mensage = Mensage.split('-'); //Parte mensaje utilizando como separador el guion "-".
timer = null;
timer2 = null;
NoColor = 0;
NoMsg = 0;
IncrementoUno = 1;
currentStep = 10;
step = 8;
ns = (document.layers)?1:0;
viz = (document.layers)?'hide':'hidden';
if (ns)
   document.write("<div id='T' style='position:absolute'></div><br>");
else {
   document.write("<div style='position:absolute'>");
   document.write("<div align='center' style='position:relative'>");
   document.write("<div id='T' style='position:absolute;width:0;height:0;font-family:Arial;font-size:0'>kurt</div>");
   document.write("</div></div><br>");
//   window.alert("Prueba msgBienvenida ");
}
MsgBienvenida();

function MsgBienvenida() {
  var pageHeight = (document.layers)?window.innerHeight:window.document.body.offsetHeight;
  var pageWidth = (document.layers)?window.innerWidth:window.document.body.offsetWidth;
  if (ns) {
    ypos = pageHeight / 2;
    var Write = '<div align="center" style="width:0px;height:0px;font-family:Arial,Verdana;font-size:'+currentStep/4+'px;color:'+colours[NoColor]+'">'+Mensage[NoMsg]+'</div>';
    document.T.top = ypos + -currentStep / 8 + window.pageYOffset;
    document.T.document.write(Write)
    document.T.document.close();
  }
  else {
    ypos = pageHeight / 2;
    xpos = pageWidth / 2;
    T.style.width = currentStep;
    T.style.height = 1000;
    T.style.pixelTop = ypos + -currentStep / 16 + document.body.scrollTop;
    T.style.pixelLeft = (xpos - 20)+ -currentStep / 2;
    T.style.fontSize = currentStep / 8;
    //T.style.lineheight = currentStep / 8;
    T.innerHTML = Mensage[NoMsg];
    T.style.color = colours[NoColor];
  }

  if (ns) step += 5;
  else step += 15;

  currentStep += step

  if (ns) {
    if (currentStep > pageWidth / 4) {
      currentStep = 10;
      step = 8;
      NoMsg += IncrementoUno;
      NoColor += IncrementoUno;
    }
    if (NoColor >= colours.length) NoColor = 0;
  }
  else {
    if (currentStep > pageWidth * siZe / 4) {
      currentStep = 10;
      step = 8;
      NoMsg += IncrementoUno;
      NoColor += IncrementoUno;
    }
    if (NoColor >= colours.length) NoColor = 0;
  }

  if (NoMsg >= Mensage.length) {
    clearTimeout(timer);
    if (ns) document.T.visibility = viz;
    else T.style.visibility = viz;
  }
//timer = setTimeout("Message()",40)
//  window.alert("Prueba msgBienvenida ");
  timer = setTimeout("MsgBienvenida()",50);
}
//  End -->
