/* 
 * saikstin, 2011. Check license text on http://saikstin.com/license.php
 */

function fxc_setAutoUpdate(d)
{
	d._fxc_t = setInterval(function() {
		fxc_update(d);
	},1000);
}

function fxc_clearAutoUpdate(d)
{
	clearInterval(d._fxc_t);
}

function fxc_update(d)
{
	d.updateScrollBars();
}
