function onTimer(next_link)
{
	window.location = next_link;
}

function handleSlideshow(ss_on, next_link)
{
	if (ss_on)
	{
		var s = 'onTimer("' + next_link + '")';
	
		if (next_link.length)
		{
			setTimeout(s, 10000);
		}
	}
}

