// Main function
    message     = " به پایگاه اطلاع رسانی بنياد شرکت ارايه راهكارهاي الكترونيك - باران خوش آمدید^" +
                  "Welcome to the special site of Baran^" +
                  "لطفا نظرات و پیشنهادات حود را با ما در میان بگذارید : info@Baran.ir ^" +
                  "Please Send Your Comments To info@Baran.ir ^"

  scrollSpeed = 45;
  lineDelay   = 4000;

  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);
  }

scrollText(0);

