<!--
// BEGIN GE Community menu scripts
/***********************************************
* Switch Menu script- by Martial B of http://getElementById.com/
* Modified by Dynamic Drive for format & NS4/IE4 compatibility
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

if (document.getElementById){ //DynamicDrive.com change
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change
		if(el.style.display != "block"){ //DynamicDrive.com change
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu") //DynamicDrive.com change
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}
// END GE Community menu scripts

/*-------------------------------------------------------------*/
// BEGIN writing GE Community top navigation
document.writeln(
/* eFlexPortal & neighborhood banners */
'<td valign=top><table BORDER=0 cellpadding=1 cellspacing=1 width=171>' +
'<tr><td><A HREF=http://www.gemedicalsystems.com/gecommunity/flextrial/eflexportal/eflex_portal.html><img src=http://egems.gemedicalsystems.com/geCommunity/images/eflex_logo.gif border=0 vspace=5></a></td></tr>' +
'<TR>' +
'<TD nowrap><img src=http://egems.gemedicalsystems.com/geCommunity/images/visit_neighborhood.gif border=0 vspace=3></TD>' +
'</TR>' +

/* HCS WebCentral banner */
'<TR BGCOLOR=#b1a992>' +
'<td align=center width=100%>' +
'<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 width=170 height=30>' +
'<param name=movie value=http://egems.gemedicalsystems.com/geCommunity/hcs_home/images/WebCentral.swf>' +
'<param name=quality value=high>' +
'<embed src=http://egems.gemedicalsystems.com/geCommunity/hcs_home/images/WebCentral.swf quality=high pluginspage=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash type=application/x-shockwave-flash width=170 height=30>' +
'</embed>' +
'</object>' +
'</td>' +
'</TR>' +

'<tr><td width=100%>' +
  /**------------------------------------**/
  /** BEGIN writing GE Community Banners **/
  '<!-- Keep all menus within masterdiv-->' +
  '<div id=masterdiv>' +
  
    '<div class=menutitle onclick="location.href=\'http://egems.gemedicalsystems.com/geCommunity/home/home.jsp\'"><a href=http://egems.gemedicalsystems.com/geCommunity/home/home.jsp>GE Community Center</a></div>' +
    '<span></span>' +
    '<div class=menutitle onclick="location.href=\'\'"><a href=http://egems.gemedicalsystems.com/geCommunity/download_center/download_center.jsp>Download Center</a></div>' +
    '<span></span>' +
        
    '<div class=menutitle onclick="location.href=\'http://www.gemedicalsystems.com/gecommunity/flextrial/eflexportal/eflex_portal.html\'"><a href=http://www.gemedicalsystems.com/gecommunity/flextrial/eflexportal/eflex_portal.html>Software Apps - eFlexTrial</a></div>' +
    '<span></span>' +
        
    '<div class=menutitle onclick="location.href=\'http://egems.gemedicalsystems.com/geCommunity/home/clinical_cases_home.jsp\'"><a href="javascript:gecomm_go(\'http://egems.gemedicalsystems.com/geCommunity/home/clinical_cases_home.jsp\',\'clinical_case\',550,500);">Clinical Cases</a></div>' +
    '<span></span>' +
        
    '<div class=menutitle onclick="location.href=\'http://egems.gemedicalsystems.com/geCommunity/interest_groups/ig_portal.jsp\'"><a href="javascript:gecomm_go(\'http://egems.gemedicalsystems.com/geCommunity/interest_groups/ig_portal.jsp\',\'ig_portal\',500,550);">Interest Groups</a></div>' +
    '<span></span>' +
        
    '<div class=menutitle onclick="location.href=\'http://egems.gemedicalsystems.com/geCommunity/tools/msgboard_portal/msgboard_portal.jsp\'"><a href=http://egems.gemedicalsystems.com/geCommunity/tools/msgboard_portal/msgboard_portal.jsp>Message Boards</a></div>' +
    '<span></span>'
);
// END writing GE Community top navigation
/*-------------------------------------------------------------*/

