<!--
//Autor: a1yadu@yahoo.com. Arikav Fab Pvt Ltd. 
// Scrolling status bar

var message="Welcome to Arikav Fab Pvt. Limited";
var place=1;
function scrolln(){
window.status=message.substring(0,place);
if (place >= message.length){
place=1;
window.setTimeout("scrollOut()",300);
}
else{
place++; 
window.setTimeout("scrolln()",50);
}}
function scrollOut(){window.status=message.substring(place,message.length);
if (place >= message.length){
place=1;
window.setTimeout("scrolln()",100);
}
else{
place++; 
window.setTimeout("scrollOut()",50);
}}
//-->