swfobject.registerObject("FBContent", "9.0.0", "expressInstall.swf");
function openFlashbox(groupName) {
	var obj = document.getElementById("myFlashbox");
	obj.style.top = "0px";
	obj.style.width = "100%";
	obj.style.height = "100%";
	obj.style.visibility = "visible";
	obj.style.position = "fixed";
	var toFlash = swfobject.getObjectById("FBContent");
	if (toFlash && typeof toFlash.SetVariable != "undefined") {
		var blind = "";
		toFlash.SetVariable("showFlashbox", groupName);
	}
}
function closeFlashbox() {
	// this function will be called from the flashbox swf if you click in the flashbox to close it
	var obj = document.getElementById("myFlashbox");
	obj.style.top = "-20px";
	obj.style.width = "3px";
	obj.style.height = "3px";
	obj.style.visibility = "hidden";
}
