//
var MIN_HEIGHT = 630;
var MIN_WIDTH = 985;

function getHeight(){ return $(window).height() > MIN_HEIGHT ? $(window).height() : MIN_HEIGHT; }
function getWidth(){ return $(window).width() > MIN_WIDTH ? $(window).width() : MIN_WIDTH; }

$(window).resize(function(){
	// call twice to make sure the scrollbars disappear
	resizeFlash();
	resizeFlash();
});
function resizeFlash(){
	$('#'+attributes.id).height(getHeight());
	$('#'+attributes.id).width(getWidth());
}
