var highlighted = null;

function highlight(divID)
{
	if( highlighted == null )
	{ //highlight this div
		if(document.getElementById)  // DOM3 = IE5, NS6
		{
			document.getElementById(divID).style.backgroundColor = '#A8D5EA';
		}
		else 
		{
			if (document.layers)// Netscape 4 
			{ 
				eval("document." + divID + ".style.backgroundColor = '#A8D5EA';");
			}
			else  // IE 4
			{
				eval("document.all." + divID + ".style.backgroundColor = '#A8D5EA';");
			}
		}
		highlighted = divID
	}
	else if( highlighted != divID )
	{ //Turn off previous highlight, turn on this one
		if(document.getElementById)  // DOM3 = IE5, NS6
		{
			document.getElementById(highlighted).style.backgroundColor = '';
		}
		else 
		{
			if (document.layers)// Netscape 4 
			{ 
				eval("document." + highlighted + ".style.backgroundColor = '';");
			}
			else  // IE 4
			{
				eval("document.all." + highlighted + ".style.backgroundColor = '';");
			}
		}
		
		if( divID != null)
		{
			if(document.getElementById)  // DOM3 = IE5, NS6
			{
				document.getElementById(divID).style.backgroundColor = '#A8D5EA';
			}
			else 
			{
				if (document.layers)// Netscape 4 
				{ 
					eval("document." + divID + ".style.backgroundColor = '#A8D5EA';");
				}
				else  // IE 4
				{
					eval("document.all." + divID + ".style.backgroundColor = '#A8D5EA';");
				}
			}
		}
		
		highlighted = divID
	}
	//no action if already highlighted
}