
  message     = "ينصح بإغلاق المتصفح حال الإنتهاء من زيارة الموقع وذلك للحفاظ على سرية المعلومات" + "^"
//  message     = "Grafe Libao abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz" + "^"
  scrollSpeed = 150
  lineDelay   = 500

  // Do not change the text below //

  txt         = ""
  fil = ""
  function scrollText(pos) {
    if (pos > message.length + 100) {
		pos = 0;
		fil = "";
		txt = "";
	}
	
    if ((pos > message.length + 40) & (fil==" ")) {
		pos++;
		pauze  = 50
		//alert("POS:" + pos + " /n Pauze:" + pauze);
		setTimeout("scrollText('"+pos+"')",pauze)	
		return;
		}
		
    if (message.charAt(pos) != '^'){
    
      if (fil == " ") {
      //alert(txt)
      //Form1.txt.value=txt
            txt = fil + txt }
      if (fil == "") {
		    txt    = fil + txt + message.charAt(pos)
      }
      
//      txt    = fil + txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
	  fil = " "
      pauze  = lineDelay
//      pauze = lineDelay
//      if (pos == message.length-1) {
//      pos = -1;
//      }
     }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)
