		//<![CDATA[
		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; 
		}
		function createFullBrowserFlash() {
			//swfobject.createCSS("html", "height:100%;");
			//swfobject.createCSS("body", "height:100%;");
			swfobject.createCSS("html", "height:750px;");
			swfobject.createCSS("body", "height:750px;");
			//swfobject.createCSS("#container", "margin:0; width:100%; height:100%; min-width:1024px; min-height:500px;");
			swfobject.createCSS("#container", "margin:0; width:100%; height:750px; min-width:1024px; min-height:500px;");
			window.onresize = function() {
				var el = document.getElementById("container");
				var size = getViewportSize(); 
 				el.style.width = size[0] < 1024 ? "1024px" : "100%";
				//el.style.height = size[1] < 500 ? "500px" : "100%";
				el.style.height = size[1] < 500 ? "500px" : "750px";
			};
			window.onresize();
		}	
		var vars = {};
		var params = { scale:'noScale', salign:'TL', menu:'false', wmode: 'opaque', allowScriptAccess: 'always', allowFullScreen: 'true' };
		var attributes = { id:'content', name:'content' }; // give an id to the flash object
      	swfobject.embedSWF("taken.swf", "content", "100%", "750", "9.0.0", "swf/expressInstall.swf", vars, params, attributes );
		//swfmousewheel.registerObject(attributes.id);

		if (swfobject.hasFlashPlayerVersion("9.0.0")) {
			swfobject.addDomLoadEvent(createFullBrowserFlash);
		}
		//]]>