function Highlight(obj,bgcolor,highcolor)
{
	var Str=new String(bgcolor);
	Str=Str.toLowerCase();
 if(obj.style.backgroundColor==Str) 
	 {
	 obj.style.backgroundColor=highcolor;
 }
 else{obj.style.backgroundColor=Str;
 }
 }
