msg = "Centro Funerario Lugano, Via alle Rose 4, CH-6963 Pregassona, info@cfl.ch";
spacer = "...	...";
pos = 0; 
function ScrollMessage() {
	window.status = msg.substring(pos, msg.length) + spacer
		+ msg.substring(0, pos);
	pos++;
	if(pos > msg.length) pos = 0;
	window.setTimeout("ScrollMessage()", 200);
}
ScrollMessage();
// JavaScript Document