var flashWindow;

function GoFlash() {
	if (flashWindow && !flashWindow.closed) {
		flashWindow.focus();
	} else {
		var width = 780;
		var height = 500;
		var left = parseInt((screen.availWidth/2) - (width/2));
		var top = parseInt((screen.availHeight/2) - (height/2));
		var windowFeatures = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0";
		windowFeatures += ",width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top;
		flashWindow = window.open("", "fiori_flash", windowFeatures);
		setTimeout("GoFlashFinish()", 100);		//wait for IE to create the window
	}
}

function GoFlashFinish() {
	flashWindow.focus();
	if (flashWindow.document.title == "") {
		flashWindow.location.href = "/portfolio/fioriinc/2003/detect.html";
	}
}

function SwitchToMainWindow(mainURL) {
	if (!self.opener) {
		var mainWindow = window.open(mainURL, "fiori_main");
		self.opener = mainWindow;
	} else {
	self.opener.location.href = mainURL;
	self.opener.focus();
	}
}

