function createFullBrowserFlash() {
	swfobject.createCSS("html", "height:100%;");
	swfobject.createCSS("body", "height:100%;");
	swfobject.createCSS("#flashContainer", "margin:0; width:100%; height:100%; min-width:1000px; min-height:628px;");
	window.onresize = function() {
		var el = document.getElementById("flashContainer");
		var size = getViewportSize(); 
 		el.style.width = size[0] < 1000 ? "1000px" : "100%";
		el.style.height = size[1] < 628 ? "628px" : "100%";
		moveElements()
	};
	window.onresize();
}	

function moveElements() {
	var size = getViewportSize(); 
	var iLeft = ( size[0] < 1000 ? 1000 : size[0] );
	var iTop = ( size[1] < 628 ? 628 : size[1] );
	

	var oFooter = document.getElementById("footer");
	if (oFooter) {
		oFooter.style.left = "300px";
		oFooter.style.top = (iTop - 20) + "px";
	}

	var oFooterSocial = document.getElementById("footerSocial");
	if (oFooterSocial) {
		oFooterSocial.style.left = "110px";
		oFooterSocial.style.top = (iTop - 43) + "px";
	}	

	var oRTP = document.getElementById("rtp");
	if (oRTP) {
		oRTP.style.left = (iLeft - 208) + "px";
		oRTP.style.top = (iTop - 20) + "px";
	}			

}

