var scroll="Welcome to SIGMA MCB ELECTRO CONTROLS";
var length=scroll.length;
var pos=100;
var width=100;
function scl() {
pos++;
if(pos<=(length+width)){
var i=width-pos;
if(i>=0){
var pad="";
for(var j=0;j<=i;j++){
pad=pad + "";
}
window.status=pad +scroll.substring(0,pos);
}
else{
window.status=scroll.substring(Math.abs(i),length);
}
}
else
{
pos=0;
}
setTimeout("scl()",100);
}
scl();