// minimum height
var MIN_WIDTH = 1280;
var MIN_HEIGHT = 1083;

// Adjust the height of the swffit, for taller content
function resize(width, height) {
		
	if( typeof( window.innerHeight ) == 'number' ) {
		height = window.innerHeight;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		height = document.documentElement.clientHeight;
	}

	if (height < MIN_HEIGHT)
		height = MIN_HEIGHT;
	
	swffit.fit("flashContent", MIN_WIDTH, MIN_HEIGHT);
	
	return true;	// scroll back up to top
}
