<!-- Begin
function highlight(which,color)
{
	if (document.all || document.getElementById)
	    which.style.backgroundColor=color;
}
function highlightpicture(image,opacity)
{
   var ie5=(document.all && document.getElementById);
   var ns6 = document.getElementById;
   if(document.all) ns6 = false;
   obj = document.getElementById(image);
   if(ie5)
     obj.style.filter="alpha(opacity="+opacity+")";
   else if(ns6)
     obj.style.MozOpacity = opacity;
obj.style.MozOpacity = opacity;
}
// End -->
