function hideAllDivs(){
	var arrDivList = new Array('therapeutics','tools','devices','diagnostics');
	for(i=0;i<arrDivList.length;i++){
		document.getElementById(arrDivList[i]).style.visibility = "hidden";
	}
}

function showDiv(el){
	hideAllDivs();
	document.getElementById(el).style.visibility = "visible";
}

function launchBoardPopUp(strName){
		window.open('board-popup.asp?b='+strName,'','toolbar=yes,height=500,width=500,scrollbars=yes');
}

function launchBoardPopUpCMS(strName){
		window.open('board-popup-cms.asp?ID='+strName,'','toolbar=yes,height=500,width=500,scrollbars=yes');
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

