$(document).ready(function () {
  
	var h = $(window).height();
	var w = $(window).width();
	
	if(w>990)
		$("#flashContent").css('width','100%');
	else
		$("#flashContent").width(990);
	
	if(h>590)
		$("#flashContent").height(h);
	else
		$("#flashContent").height(590);
		
	$(window).resize(function() {		
			h = $(window).height();
			w = $(window).width();
			
			if(w>990)
				$("#flashContent").css('width','100%');
			else
				$("#flashContent").width(990);
			
			if(h>590)
				$("#flashContent").height(h);
			else
				$("#flashContent").height(590);
	});
});

function resize(vh)
{	
	if(vh)
		$("#flashContent").height(vh);
	else
		$("#flashContent").height(h);
}

function openFooter(asBool)
{
	if(asBool)
		resize(h+200)
	else
		resize(h-200)
}
