var msg = "TOYAL-EUROPE.COM -- Aluminium Pastes and Powders"; // Scrolling Message barre d'état
var spacer = "!   "; 
var pos = 0; // Message Starting Position 
var showmsg = true; // Message Flag Control
function ScrollMessage() { 
if (!showmsg) { 
window.setTimeout("ScrollMessage()",1500); 
showmsg = true; 
return; 
} 
window.status = msg.substring(pos, msg.length) + spacer + 
msg.substring(0, pos); 
pos++; 
if (pos > msg.length) pos = 0; 
window.setTimeout("ScrollMessage()",100); // TimeLapse Update 
} 
ScrollMessage(); // Start the scrolling message 