
var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var NS4 = (bName == "Netscape" && bVer >= 4);
var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
	
 function ColorOn (id,mycolor){
  
  if (!mycolor) { mycolor = '#E3E3E3' };
   
	if (NS4) {
     eval ('window.document.' + id + '.bgColor =\'' + mycolor + '\'');
	} else if (IE4) { 
     eval (id + '.style.background = \'' + mycolor + '\'');
	} 
  
   } 
     
   function ColorOff (id){
   
	if (NS4) {
        eval ('window.document.'+ id + '.bgColor =null');
	} else if (IE4) { 
        eval (id + '.style.background = \'\'');
	} 
  
   }  
  
  
   // End Script -->
		</SCRIPT>
		