//<![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("#wrapper", "margin:0; width:100%; height:100%; min-width:960px; min-height:600px;");
	window.onresize = function() {
		var el = document.getElementById("wrapper");
		var size = getViewportSize(); 
		el.style.width = size[0] < 960 ? "960px" : "100%";
		el.style.height = size[1] < 600 ? "600px" : "100%";
	};
	window.onresize();
}	

	swfobject.embedSWF("images/intro.swf", "flash-container", "100%", "100%", "8.0.0", "images/expressInstall.swf");
	if (swfobject.hasFlashPlayerVersion("6.0.0")) {
			swfobject.addDomLoadEvent(createFullBrowserFlash);
		}

	//swffit.fit("flash-container",800, 600, 1600, 1200);
 	
