function show_hide(showID, hideID)
		{
			try
			{
				if(hideID != "")
				{
					document.getElementById(hideID).style.display = "none";
				}
				
				if(showID != "")
				{
					document.getElementById(showID).style.display = "block";
				}
				
			}
			catch(err)
			{
				//Handle errors here
			}
			
		}
		
		function Highlight(HighlightID, DontHighlightID, CurURL)
		{
			try
			{
				if(HighlightID != "")
				{
					document.getElementById(HighlightID).style.backgroundColor="#FFFFFF";
					
					document.getElementById(HighlightID).style.color="#000000";
				}
				if(CurURL == "")
				{
					if(DontHighlightID != "")
					{
						document.getElementById(DontHighlightID).style.backgroundColor="#000000";
											
						document.getElementById(DontHighlightID).style.color="#FFFFFF";
					}
				}
			}
			catch(err)
			{
				//Handle errors here
			}
		}
		
		function ImgChange(divIn,divOut, CurURL)
		{
			try
			{
				if(CurURL != divIn)
				{
					if(divIn != "")
					{
						document.getElementById(divIn).src = "/Images/IfloSmallLogoBlack.gif";
					}
				}
				if(CurURL != divOut)
				{	
					if(divOut != "")
					{
						document.getElementById(divOut).src = "/Images/IfloSmallLogoWhite.gif";
					}	
				}
			}
			catch(err)
			{
				//Handle errors here
			}
		}