    
var msg="Welcome to AQUA PMP.The Complete Water Management System Specialists";
var spacer="                                                                      ";
var pos=0;
function ScrollMessage()
{
window.status=msg.substring(pos,msg.length)+spacer+msg.substring(0,pos);
pos++;
if(pos > msg.length) 
//alert(pos);
 pos=0;
window.setTimeout("ScrollMessage()",500);
}
ScrollMessage();

