//Functions JS

function showDropDown(objSelected, objClicked)
			{
				// Javascript Routine to Show/Hide the chosen drop down menu
				
				getObj = document.getElementById(objSelected);
				
				clickObj = document.getElementById(objClicked);
				
			   if(getObj.style.display == 'block')
				{
					getObj.style.display = 'none';
					clickObj.style.fontWeight = 'normal';
					clickObj.style.textDecoration = 'none';
				}
			 else
				{
					getObj.style.display = 'block';
					
					clickObj.style.fontWeight = 'bold';
					clickObj.style.textDecoration = 'underline';
					
				}
				
				
				//This code will hide all others if they are visible
				
				strText = "";
				
				navRoot = document.getElementById("sideSubMenu");
				for (i=0; i<navRoot.childNodes.length; i++) 
				{
				
					node = navRoot.childNodes[i];
					
					strText += node.nodeName + ", " + node.className + ", " + node.id + ", " + node.tagName + "\r\n";
					
					if (node.nodeName == 'LI' && node.className == 'dropDownContainer' && node.id != objSelected ) 
					{
					
						if (document.getElementById(node.id).style.display == 'block')
						{
							document.getElementById(node.id).style.display = 'none';
							
						}
						
					}
					
					
					if (node.childNodes.length > 0)
						{
						for (j=0; j<node.childNodes.length; j++)
							{
								if (node.childNodes[j].nodeName == 'A' && node.childNodes[j].id != objClicked)
								{
									document.getElementById(node.childNodes[j].id).style.fontWeight = 'normal';
									document.getElementById(node.childNodes[j].id).style.textDecoration = 'none';
									//alert("This has hit");
								}
							}
						}
								
				}
				
			//alert (strText);
			return true;
			
			}
