function flip_info(id, div)
{
	if(document.getElementById(div + "_check").checked==true)
	{
		document.getElementById(div).style.display = "block";
	}
	else
	{
		document.getElementById(div).style.display = "none";
	}
}

function scrollSponsors(curPos, startFlag, totalAds)
{
	document.getElementById("sponsors_div").style.top = (curPos - 2) + "px";

	if(Math.abs(curPos) > (totalAds * 80))
	{
		startPos = "450px";	
	}
	else
	{
		startPos = document.getElementById("sponsors_div").style.top;
	}

	intervalID = setTimeout('scrollSponsors(' + startPos.substr(0, startPos.length - 2)  + ',0,' + totalAds + ')', 75);

}

function restartScroll(totalAds)
{
	startPos = document.getElementById("sponsors_div").style.top;
	intervalID = setTimeout('scrollSponsors(' + startPos.substr(0, startPos.length - 2)  + ',0,' + totalAds + ')', 75);
}