<!--
<!-- Beginning of JavaScript -->


/* 
Questo script permette di scrivere un messaggio ciclico nella barra di stato 
*/

var msg = "JOINT STAMPI - Via Pittura, 10/A - Ripatransone (AP) - Italien - Tel: 0735/97126 - Fax: 0735/91000 - EMAIL: info@jointstampi.com";
var spacer = "                      ";
var 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();



// - End of JavaScript - -->

//-->


