<!-- ##BEGIN SCROLLING -->

<!--
// Scrolling status Bar text Script
// Being of Scrolling text in the Status bar
var speed = 50 //decrease value to increase speed (must be positive) 
var pause = 3000 //increase value to increase pause
var timerID = null 
var bannerRunning = false
var ar = new Array()
ar[0] = "NicolaFerrini.it è una risorsa completa e gratuita per chi vuole conseguire la patente ECDL"
ar[1] = "NicolaFerrini.it è la prima risorsa online per le SIMULAZIONI ECDL"
ar[2] = "NicolaFerrini.it è l'unico sito che offre le simulazioni per la certificazione MICROSOFT MOS"
ar[3] = "NicolaFerrini.it è il primo sito italiano ad avere le simulazioni ECDL ADVANCED"
ar[4] = "                   "
var currentMessage = 0
var offset = 0
function stopBanner() {
	if (bannerRunning)
		clearTimeout(timerID)
		bannerRunning = false
		}
function startBanner() {
		stopBanner()
		showBanner()
}
function showBanner() { 
		var text = ar[currentMessage]
		if (offset < text.length) {
			if (text.charAt(offset) == " ")
			offset++ 
			var partialMessage = text.substring(0, offset + 1)
			window.status = partialMessage
			offset++ 
			timerID = setTimeout("showBanner()", speed)
			bannerRunning = true
				} else {
			offset = 0
			currentMessage++
				if (currentMessage == ar.length)
					currentMessage = 0
					timerID = setTimeout("showBanner()", pause)
					bannerRunning = true
					}
							}
// -->

<!-- ##END SCROLLING -->

<!--
//this is to start the Scrolling Status Bar
startBanner();
// -->
