/**
 * Sets the page content container (div or frame) to 100% - 150ox
 * @return void
 */
function setSwfSize() {
	h = $(window).height();
	swfHeight = h;
	$('#outerShell').height(h);	
	minHeight = 870;	
	if (h < 870) {	
		$('#outerShell').height(minHeight);	
	} else {	
		$('#outerShell').height(h);
		$('#flashContent').height(swfHeight);	
	}
}
$(window).resize(function(){
	setSwfSize();	
});

