function MouseOverMe(element, mode) 
{

 if ((document.getElementById) || (document.all))
	{

	 var bgColor; 
	 var fgColor;


	 if (mode == 'OUT') {
			bgColor = '';   
			fgColor = '#000000';
	 }


	 if (mode == 'IN') {
			bgColor = '#FFCC00';  //Yellow = '#FFCC00';  //RED = '#B70E14'; 
			fgColor = '#000000';   //White = '#FFFFFF';  
	 } 
	 
	//Greater than IE 4
	 if (document.getElementById) {

		var linkTxt = document.getElementById(element + "Link");
		document.getElementById(element).style.backgroundColor = bgColor;
	
		if (linkTxt) {
			 linkTxt.style.color = fgColor; 
			 }
	
	 } else if (document.all) {   //IE 4
		var linkTxt = document.all(element + "Link");
		document.all(element).style.backgroundColor = bgColor;
		if (linkTxt) { linkTxt.style.color = txtColor; }
	 }
	}
}
