function updateScrollBars()
{
	var winW, winH;

	if (navigator.appName=="Netscape")
	{
		winW = window.innerWidth;
		winH = window.innerHeight;
	}
	
	if (navigator.appName.indexOf("Microsoft")!=-1)
	{
		winW = document.body.offsetWidth;
		winH = document.body.offsetHeight;
	}
	
	//alert(document.getElementById('flashcontainer').className);
	
	if(winW < 800 || winW < 600)
	{
		document.getElementById('flashcontainer').className = 'fixedSize';
	}
	else
	{
		document.getElementById('flashcontainer').className = '';
	}
}

function initColron()
{
	updateScrollBars();
}

addEvent(window, 'load', initColron);
addEvent(window, 'resize', updateScrollBars);