function titolo(pagina){
	if(document.getElementById) {
					
		var x=new Date();
					
		h = x.getHours();
		m = x.getMinutes();
		s = x.getSeconds();
					
		if (h < 10) {
			h = '0'+h;
		}
					
		if (m < 10) {
			m = '0'+m;
		}
					
		if (s < 10) {
			s = '0'+s;
		}
					
		document.title = '| '+pagina+' | GREGHY.altervista.org | '+h+':'+m+' '+s+' |'
				
		setTimeout("titolo('"+pagina+"')",1000);
	}
}