function onResize()
{
	var el = document.getElementById('flashcontent');

	if (navigator.appName.indexOf("Microsoft")!=-1) 
	{
		(document.body.offsetWidth < 600) ? el.style.width = 600 + 'px' : el.style.width = document.body.offsetWidth + 'px';
		(document.body.offsetHeight < 600) ? el.style.height = 600 + 'px' : el.style.height = document.body.offsetHeight + 'px';
		
	} 
	else 
	{
		(window.innerWidth < 600) ? el.style.width = 600 + 'px' : el.style.width = window.innerWidth + 'px';
		(window.innerHeight < 600) ? el.style.height = 600 + 'px' : el.style.height = window.innerHeight + 'px';
	}
}

window.onresize = onResize;