function openFSPopup(path) {
    if (bbcjs.plugins.flashVersion >= 5) {
		var width                 = 600;
		var height                = 440;
		var popup                 = new bbcjs.win.Window(path, width, height);
		popup.name                = "flashWin";
		popup.features.scrollbars = "no";
		popup.features.toolbar    = "no";
		popup.features.status     = "no";
		popup.features.menubar    = "no";
		popup.features.top        = 0;
		popup.features.left       = 0;
		popup.open();
	    return false;
	} else {
	    return true;
	}
}