<!-- 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.all && document.getElementById);
   obj = document.getElementById(image);
   if(ie5)
     obj.style.filter="alpha(opacity="+opacity+")";
   else if(ns6)
     obj.style.MozOpacity = opacity + '%';
}
// End -->
