msg = "Merry Christmas & Happy New year";
//msg += "Notice that the actual message is larger ";
//msg += "and only a portion is displayed at once. ";
pos = 0;
function ScrollMessage()
{
	newtext = msg.substring(pos, msg.length) +
		"...           " + msg.substring(0, pos);
	newtext = newtext.substring(0,60);
obj = document.getElementById("scroll");
obj.firstChild.nodeValue = newtext;
pos++;
if (pos > msg.length) 
	pos = 0;
window.setTimeout("ScrollMessage()", 150);
}