var doMoreRandom = function( ) 
{
	aRandom.callback = function( responseText, responseStatus, responseXML )
	{
		if ( responseStatus == 200 )
		{
			document.getElementById('RandomScenes').innerHTML = responseText;
			document.getElementById('RandomScenesStatus').className='loaded';
		}
	}
	aRandom.callback_loading = function( ) 
	{ 
		document.getElementById('RandomScenesStatus').className='loading';
	}
	
	aRandom.update( 'module=random_scenes&tpl=' + aRandomTpl + '&limit=' + aRandomLimit + '', 'GET' );
}