			// All Rights Reserved to Nawarny.com 
			// Function to Scroll status bar Coded by Programmer Mostafa Mahmoud Abd El-Ghafar 5-2003 
			// define the scrollable text
//		scrtxt= "موقع نورنى - موقع التربية والتعليم بكل مراحله - مناهج - بنك أسئله فى كل التخصصات - نماذج إمتحانات للطالب - الدورات التدريبية - أشهر مراكز التدريب - المنتديات - التسلية - الأغانى - محلل الشخصية - الصداقة - فقط من أرض الكنانة مصر نور العلم إلى كل العالم";
		scrtxt = "www.nawarny.com نور التربية والتعليم من المهد إلى اللحد"
		var length = scrtxt.length;
		var width = 140;
		var pos = -(width + 0);
		function scroll()
		{
			// display the text at the right position
			pos++;
			// accomulate the text
			var scroller = "";
			if (pos == length)
			{
				 pos = -(width + 0);
			}

			// if the text haven't reached the left site yet we have to add some spaces
			// otherwise we have to increase text which moved

			if (pos < 0)
			{
				for (var i = 1; i <= Math.abs(pos);i++)
				{
				  scroller = scroller + " ";
				}
				scroller = scroller + scrtxt.substring(0 , width - i + 1);
			}
			else
			{
				scroller = scroller + scrtxt.substring(pos,width + pos);
			}
			// assign the text to status bar
			window.status = scroller
			setTimeout("scroll()", 75);
		}
//<body bgcolor= #ebf0fb >
