// I am used to create small popup windows.
// Usage: popupPage("YourFile.htm", yes, 10, 10, 640, 480);
function popupPage(page, s, l, t, w, h) {
var windowprops = "location=no,menubars=no,toolbars=no,resizable=no" +
	",scrollbars=" + s + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
var URL = page;
	window.open(URL,"MenuPopup",windowprops);
}

// I am used by the homepage to turn of the menu in the flash movie
function showMenu()	{
	if (typeof bcbsfl_menu != "undefined") {
		bcbsfl_menu.setVariable('menuShow_int',-1);
	}
}
