var x = 0;

function movestring()
{
	d = document.getElementById('infoscroll');

	if( d )
	{
		d.style.left = String(x) + "em";

		x -= 0.3;
		
		if( x < -60 )
			x = 13;
		
		setTimeout('movestring()', 100);
	}
}

function onloadhandler()
{
	x = 13;
	setTimeout('movestring()', 1000);
}
