<!--
//Messages scroll at the bottom of the page in the status bar
//Remember to onload="scrollMsg()"

bxgMsg = "Welcome to the Business eXchange Group's Home Page   " 
i = 0

function scrollMsg() {
	
	window.status = bxgMsg.substring(i, bxgMsg.length) + bxgMsg.substring(0, i-1)

	if (i < bxgMsg.length){
		i++
	}
	else{
		i = 0
	}

	setTimeout ("scrollMsg()", 150)
}

<!-- end script -->