var minw = 1000;	//ALSO SET #flashcontainer width property to this value!
var minh = 700;
var minflashv = "10.0.0";
var version = "323_2";
var footerH = 36;
//
function createFullBrowserFlash() {
    swfobject.createCSS("html", "height:100%;");
    swfobject.createCSS("body", "height:100%;");
    swfobject.createCSS("#flashcontainer", "margin:0; width:100%; height:100%; min-width:" + minw + "px; min-height:" + minh + "px;");
    window.onresize = function() {
        var el = document.getElementById("flashcontainer");
		var size = [$(window).width(),$(window).height()];
        el.style.width = (size[0] < minw ? minw + "px" : "100%");
        el.style.height = (size[1]-footerH < minh ? minh : (size[1]-footerH)) + "px";
		$('#content').height((size[1]-footerH < minh ? minh : (size[1]-footerH)));
		//
		var sf = document.getElementById("socialfooter");
		sf.style.width = (size[0] < minw ? minw + "px": "100%");
    };
    window.onresize();
}
//
var flashvars = {};
flashvars.domain = "www.sevenedge.com";
flashvars.initlang = "eng";
var params = {bgcolor:"#D8D7D7"};
params.allowscriptaccess = "always";
var attributes = {id:"content"};
swfobject.embedSWF("preloader_"+version+".swf", "content", "100%", "100%", minflashv, null, flashvars, params, attributes);
if (swfobject.hasFlashPlayerVersion(minflashv)){
    swfobject.addDomLoadEvent(createFullBrowserFlash);
}else{
    showAltContent();
}
// redirect to noflash page that shows a layouted alt page
function showAltContent(){
    window.location = '?page=1';
}
