
<!-- Beginning of JavaScript supplied by http://www.hypergurl.com -

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 = '#87DAC0' };
   
	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 JavaScript -->
