function fsBox(movieName, lang) {

	var boxHeight = $('#fsbox').height();
	var maxHeight = document.documentElement.clientHeight - ($('#page-header').height() - 24 + $('#page-footer').height());
	$('#fsbox').css({ height: maxHeight });
		
	$(window).resize(function() {
		var boxHeight = $('#fsbox').height();
		var maxHeight = document.documentElement.clientHeight - ($('#page-header').height() - 24 + $('#page-footer').height());
		$('#fsbox').css({ height: maxHeight });
	});

	var flashvars = new Object();
	flashvars['lang'] = lang;
	
	var params = new Object();
	params['allowfullscreen'] = 'false';
	params['allowscriptaccess'] = 'always';
	params['wmode'] = 'opaque';
	
	var attributes = new Object();
	attributes['id'] = 'flash';
	attributes['name'] = 'flash';

	swfobject.embedSWF('fileadmin/templates/flash/'+movieName, 'flash', '100%', '100%', '10.0.0', 'expressInstall.swf', flashvars, params, attributes);
}