//////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////// PLACE SWF /////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////

	function placeWebsite(container, swf, swfID, width, height, version, color) {
		// Set swf properties
		var flashvars = false;
		var params = { menu: "false" };
		var attributes = { id: swfID, name: swfID };

		var i = window.location.href.indexOf("?");
		var openPage = window.location.href.substr((i+1),1);
		if(openPage>0) {  
			flashvars = { activePage: openPage };
		}

		
		
		// Go!
		swfobject.embedSWF(swf, container, "100%", "100%", version, "include/expressinstall.swf", flashvars, params, attributes);
		// IE 8 HIDE SCROLLBARS
		document.body.style.overflow = "hidden";
	}
	


