/** *  *///var macmousewheel;var swfWidth;var swfHeight;var swfContainer;function embedFullSceneSWF(swfFileName, bgColor, targetID, version, container, width, height, flashvars){	//document.getElementById(container).style.width = swfWidth + "px";	swfobject.createCSS("#"+container, "width:"+width+"px;");		if(!flashvars)		flashvars = {};		var params = {};	params.bgcolor = bgColor; 	params.menu = 'false';	params.allowFullScreen = 'true';	params.allowScriptAccess = 'always';		swfobject.embedSWF(swfFileName, targetID, "100%", "100%", version, 'js_neu/expressinstall.swf', flashvars, params);	if (swfobject.hasFlashPlayerVersion(version)) {		swfobject.addDomLoadEvent(createFullBrowserFlash);	}		// setup global vars	//macmousewheel = new SWFMacMouseWheel( swfobject );	swfWidth = width;	swfHeight = height;	swfContainer = container;}function createFullBrowserFlash() {	swfobject.createCSS("html", "height:100%;");	swfobject.createCSS("body", "height:100%;");	swfobject.createCSS("#" + swfContainer, "margin:0; width:100%; height:100%; min-width:"+swfWidth+"px; min-height:"+swfHeight+"px;");	window.onresize = function() {		var el = document.getElementById(swfContainer);		if(el)		{			var size = getViewportSize(); 			el.style.width = size[0] < swfWidth ? swfWidth+"px" : "100%";			el.style.height = size[1] < swfHeight ? swfHeight+"px" : "100%";		}	};	window.onresize();}	function getViewportSize() { 	var size = [0, 0]; 	if (typeof window.innerWidth != "undefined") { 		size = [window.innerWidth, window.innerHeight];	} 	else if (typeof document.documentElement != "undefined" && typeof document.documentElement.clientWidth != "undefined" && document.documentElement.clientWidth != 0) {		size = [document.documentElement.clientWidth, document.documentElement.clientHeight]; 	}	else {		size = [document.getElementsByTagName("body")[0].clientWidth, document.getElementsByTagName("body")[0].clientHeight]; 	}	return size; }
