// JavaScript Document
  <!-- Hide from old browsers
  message     = "  به سایت اینترنتی سازمان انتقال خون  استان يزد خوش آمديد ^" +
                "        welcome to    '  Y A Z D   B L O O D   T R A N S F U S I O N   O R G A N I Z A T I O N '    Website   ^" +
                " w w w  .  Y a z d B T O  .  ir    ::   w w w  .  Y a z d B T O  .  com  ^" +
                "^";
  scrollSpeed = 45;
  lineDelay   = 3000;

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    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)
  }

  // Unhide -->
scrollText(0)