
// JavaScript Document
// adds sub menu function by showing sub menus
function showMenu(layerID, offset) {
	document.getElementById(layerID).style.visibility = "visible";
	document.getElementById(layerID).style.top = (offset);
} // showMenu

// adds sub menu function by hiding sub menus
function hideMenu(layerID) {
	document.getElementById(layerID).style.visibility="hidden";
} // hideMenu

// This function opens a new window to display meeting details
function details(url) {
	detailsWindow = window.open(url, "detailsWin", "height=600,width=700,scrollbars");
	detailsWindow.focus( );
}  // details

// these functions open a new window for remote websites
function launch(newURL, newName, newFeatures, orgName) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  return remote;
} // launch
function launchRemote() {
  myRemote = launch("/external/external.htm", "myRemote", "height=280,width=400,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "myWindow");
} //launchRemote
