<!--- hide script from old browsers                   
	var CurrentMsg = 'hello ';                    
function update(msg) {                           
	var pad_str="";                           
	n = msg.length;                           
	if(n<45) {                                   
		pad = (46-n)/2;                                   
		for(var i=0; i<pad; i++) {                                           
			pad_str+=" ";                        
		}                        
	}                          
	CurrentMsg = pad_str + msg;                           
	document.messages.field.value = CurrentMsg;                           clearTimeout(timer);                           
	timer = setTimeout("idleMsg()",2500);        
}                           

function MakeArray(n) {                           
	this.length=n;                           
	for(var i = 1; i<= n; i++) {                                   
		this[i] = "";                
	}                           
	return(this);        
	}               
	var index = 1;           
	var notice_num = 13;                   
	var notices = new MakeArray(notice_num);        
	notices[1] = "Internet Gratis - esplosione di offerte";        
	notices[2] = "ClubNet - http://clubnet.tin.it";
	notices[3] = "email@tin.it, spazio web 20MB";        
	notices[4] = "Libero - http://www.libero.it";
	notices[5] = "email@libero.it 5MB, spazio web 25MB, 155 24/24";
	notices[6] = "Tiscalinet - http://www.tiscali.it";
	notices[7] = "email@tiscalinet.it 5MB, spazio web 15MB";
	notices[8] = "Kataweb - http://www.kataweb.it";
	notices[9] = "email@katamail.it";
	notices[10] = "Supereva - http://www.supereva.it";
	notices[11] = "email@supereva.it";
	notices[12] = "Worldonline - http://www.worldonline.it";
	notices[13] = "";
	var timer = setTimeout('idleMsg()',1500);                   

function nochange() {                           
	document.messages.field.value = CurrentMsg;        
}                   

function idleMsg() {                           
	update(notices[index++]);                           
	if(index>notice_num) { 
		index=1; 
	}  
}

// end hiding from old browsers-->
