function toggleDivOL( elemID )
{
	var elem = document.getElementById( elemID );
	if( elem.style.position != 'relative' )
	{
		elem.style.position = 'relative';
		elem.style.left = '0px';
	}
	else
	{
		elem.style.position = 'absolute';
		elem.style.left = '-4000px';		
	}
}
function Zapri( elemID )
{
	var elem = document.getElementById( elemID );
	elem.style.position = 'absolute';
	elem.style.left = '-4000px';		
}