
<!-- 
var timer_id;
function scroll_iframe(dir)
{
	if (window.frames['scrolling'])
	{
		if ( dir  > 0 )
		{
			window.frames['scrolling'].scrollBy( 0, 10 );
		}
		else
		{
			window.frames['scrolling'].scrollBy( 0, -10 );
		}
	}
	else
	{
		alert("Could not find scolling window, Please contact Quik Support" );
	}
}

function startScroll( dir ) { timer_id = setInterval( "scroll_iframe( "+ dir +" )", 20 ); }
function stopScroll() { if (timer_id) clearInterval(timer_id); }

//-->