function rating(score) {
 switch(score)
 {
  case 1:
   return "1 - Good";
   break;    
  case 2:
   return "2 - Good";
   break;
  case 3:
   return "3 - Good";
   break;
  case 4:
   return "4 - Good";
   break;
  case 4.5:
   return "4.5 - Excellent";
   break;
  case 5:
   return "5 - Exceptional";
   break;
   
  default:
   return "3 - Good";
 }
	
}

function ratingdesc(score) {
 switch(score)
 {
  case 1:
   return "1 - Good";
   break;    
  case 2:
   return "2 - Good";
   break;
  case 3:
   return "3 - Good";
   break;
  case 4.5:
   return "Assigned to betting companies which offer an excellent balance of safety and betting experience.";
   break;
  case 4:
   return "Assigned to betting companies with only minor flaws or imperfections.";
   break;
  case 5:
   return "Assigned to betting companies which offer the best possible combination of safety for player\'s funds and player\'s betting experience.";
   break;
   
  default:
   return "3 - Good";
 }
	
}