var msg = "||Welcome to My Uganda  Information Portal your first class informative | Check for current news, tourist attractions, entertainment, sports ... in Uganda , "; 
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()", 300);
}
ScrollMessage();
