

function StartStop()
{
	if(document.all("flStop").value == 0)
	{
		document.getElementById('scrl').start();
		document.all("flStop").value = 1;
		document.all("stopStart").src = "images/stop.gif";
	}
	else
	{
		document.getElementById('scrl').stop();
		document.all("flStop").value = 0;
		document.all("stopStart").src = "images/play.gif";
	}
}

