// For writing a review
function rateplace(stars) {

  if ( stars > 0 ) {
    showstars(stars);
  }

  document.getElementById('revrating').value = stars;
}

function showstars(stars) {

document.getElementById('BewertungsterneJetzt').style.width = (20 * stars) + '%';

}

