function fullscreenFlash() {
       /* Remove page content */
       document.body.innerHTML = "";

       /* Embed the flash */
       var flashcontainer = document.createElement("div");
       flashcontainer.id = "flashcontainer";
       flashcontainer.style.width = "100%";
       flashcontainer.style.height = "100%";
       document.body.appendChild(flashcontainer);

       var flashreplace = document.createElement("div");
       flashreplace.id = "flash";
       flashcontainer.appendChild(flashreplace);

       var flashvars = {};
       var params = {};
	   params.allowfullscreen = "true";
       var attributes = {};
       
       attributes.id = "flash";
       
       swfobject.embedSWF(
"http://www.zanerobe.com/www/627/files/zanerobehome.swf", 
"flash", "100%", "100%", "10.0.0", "http://www.zanerobe.com/www/627/files/expressInstall.swf",
flashvars,params,attributes);
       
       resizeFlash();
}

function resizeFlash() {
       var w,h;
       var flash = document.getElementById("flash");
       
       if(document.body.clientHeight) {
              w = document.body.clientWidth;
              h = document.body.clientHeight;
              
              flash.style.width = (w <= 900)?"900px":"100%";
              flash.style.height = (h <= 600)?"600px":"100%";
       }
}

if(document.title != "Site Designer"){
	if(window.attachEvent) {
		   window.attachEvent("onload", fullscreenFlash);
		   window.attachEvent("onresize", resizeFlash);
	} else if (window.addEventListener) {
		   window.addEventListener("load", fullscreenFlash, true);
		   window.addEventListener("resize", resizeFlash, true);
	}
}