function onResizeHome()
{
	if (swfobject.hasFlashPlayerVersion("7.0.0"))
    {
	
		var browserHeight = $(window).height();
		var browserWidth = $(window).width();
		var minFlashHeight = 600;
		var minFlashWidth = 990;
		//need to subtract out spacing for html header and footer
		var navHeight = 50;
		
		var container = document.getElementById("container");
		container.style.marginLeft = 0;
		container.style.marginRight = 0;
		container.style.width = "auto";
		
		try {
			var flashDiv = document.getElementById("flash");
			flashDiv.height = (browserHeight >= minFlashHeight) ? browserHeight-navHeight : minFlashHeight;
			flashDiv.width = (browserWidth >= minFlashWidth) ? browserWidth : minFlashWidth;
		}
		catch(e)
		{
			//flash must be enabled and written to the page for the resize functionality to work
		}
    }
}

function onBrowserResize()
{
	var browserHeight = $(window).height();
	var browserWidth = $(window).width();
	var minFlashHeight = 600;
	var minFlashWidth = 990;
	
	try {
	
		var flashDiv = document.getElementById("flash");
		flashDiv.height = (browserHeight >= minFlashHeight) ? browserHeight : minFlashHeight;
		flashDiv.width = (browserWidth >= minFlashWidth) ? browserWidth : minFlashWidth;
		
	}
	catch(e)
	{
		//flash must be enabled and written to the page for the resize functionality to work
	}
}
