function ChangeColor(tableRow, highLight)  {
											if (highLight)      {        
																tableRow.style.backgroundColor = '#daf1b9';      
																}      
																else      
																{        
																tableRow.style.backgroundColor = '#FFFDEE';      
																}  
											}  
											
function ChangeColor2(tableRow, highLight)  {
											if (highLight)      {        
																tableRow.style.backgroundColor = '#EDFFCE';      
																}      
																else      
																{        
																tableRow.style.backgroundColor = 'black';      
																}  
											}
											
											
function DoNav(theUrl)  {    
						document.location.href = theUrl;  
						}  
