var BLITZAgencyFlashFramework = {
	config: {
	// ToDo: Set Width & Height of the SWF
	swfWidth: "100%",
	swfHeight: 623
	}
}

// JS Functions called by Flash to reload the browser, used when changing Site Locale or Bandwidth Setting in Framework sites
function refresh() {
	//location.reload();
	document.location = document.location;
}

// JS function called by Flash to dynamically increase the size of the browser
function setSWFSize(nWidth, nHeight) {
	document.getElementById("main").style.width = nWidth + "px";
	document.getElementById("main").style.height = nHeight + "px";
	document.getElementById("flashcontent").style.width = nWidth + "px";
	document.getElementById("flashcontent").style.height = nHeight + "px";
}