

//minmum site dimensions
var minwidth = 800;
var minheight = 830;
			
function createFullBrowserFlash() {
	swfobject.createCSS("html", "height:100%; overflow:auto;");
	swfobject.createCSS("body", "height:100%;");
	swfobject.createCSS("#wrapper", "position:absolute;top:0px;left:0px;margin:0; width:100%; height:100%; min-width:" + minwidth + "px; minheight:" + minheight+ "px;");
	window.onresize = function() {
		var el = document.getElementById("wrapper");
		var winSize = getViewportSize();//getPageDimensions(); 
		var w = winSize.width < minwidth? minwidth+"px" : "100%";
		var h = winSize.height < minheight? minheight+"px" : "100%";
		
		if( document.all ) {
			if ((document.body.scroll = ( w!="100%" || h!="100%" )? "auto" : "no") == "auto") {
				document.body.style.overflow = "auto";
			}
		}
		el.style.width = w;
		el.style.height = h;

	};
	window.onresize();
}