﻿  <!-- Hide from old browsers
  var total=true;
  message     = "Chào mừng các bạn...^"  +

                "Đến với Website của Công Ty Vân Huy...^" +

                "Cám ơn các bạn đã ghé thăm!!!^" +

                "^"

  scrollSpeed = 25
  lineDelay   = 1500
  txt         = ""

  function scrollText(pos) {
    if (!total){
       total=true;
       window.setTimeout("scrollText('"+pos+"')",1500);
    } else{
    if (message.charAt(pos) != '^') {

      txt    = txt + message.charAt(pos)

      status = txt

      pauze  = scrollSpeed

    }

    else {

      pauze = lineDelay

      txt   = ""

      if (pos == message.length-1) pos = -1

    }

    pos++

    setTimeout("scrollText('"+pos+"')",pauze)
    }

  }

   function show(text){
      total=false;
      window.status=text;
   }
  // Unhide -->