// JavaScript Document

var thisH = 520;

function moveScroll()
{
	var winW;
	var winH;
	if (parseInt(navigator.appVersion)>3) 
	{
		if (navigator.appName.indexOf("Microsoft")!=-1) 
		{
			winW = document.body.clientWidth;
			winH = document.body.clientHeight;
		}
		else
		{
			winW = window.innerWidth;
			winH = window.innerHeight;
		}
	}
	
	if(winH < thisH)
	{
		document.getElementById("flash-content").style.height= thisH+"px";
	}
	else
	{
		document.getElementById("flash-content").style.height="100%";
	}
	
	if(winW < 834)
	{
		document.getElementById("flash-content").style.width="834px";
	}
	else
	{
		document.getElementById("flash-content").style.width="100%";
	}
}
