		//<![CDATA[
		var flashFilename = "http://www.7-eleven.com.sg/day.swf";

		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("#flash-bg", "margin:0; width:100%; height:800px; min-width:980px; min-height:800px;");
			window.onresize = function() {
				var el = document.getElementById("flash-bg");
				var size = getViewportSize(); 
 				el.style.width = size[0] < 980 ? "980px" : "100%";
				el.style.height = size[1] < 800 ? "800px" : "800px";
			};
			window.onresize();
		}	
		function playFlashBackground(flashFilename){
			var flashvars = {};
			var params = { wmode: "transparent", scale: "exactFit", scale: "noScale", salign: "T" };
			var attributes = {};	
			swfobject.embedSWF(flashFilename, "flash-bg", "100%", "800px", "6.0.0", false, flashvars, params, attributes);
		}
		if (swfobject.hasFlashPlayerVersion("6.0.0")) {
			swfobject.addDomLoadEvent(createFullBrowserFlash);
		}
		//]]>