var oldBgColour;

function doMouseOver(obj)
{
	oldBgColour = obj.style.backgroundColor;
	obj.style.backgroundColor='#FFFF00';
	return true;
}

function doMouseOut(obj)
{
	obj.style.backgroundColor=oldBgColour;
	return true;
}

function openLegendWindow()
{
	window.open('/content/statuslegend.asp', null, 'resizable=yes, location=no, menubar=no, toolbar=no, top=10, left=10, width=250, height=180',true);
}

