function calculaPVP(s){
  var retorno;
  
  if(s>=101){
     retorno='*';
  }
  else{
     if (s>=50) {
         retorno=45+(1.50*s);  
     }
     else
     {
         if (s>=5) {
            retorno=20+(2.00*s);
         }
         else
         {
            retorno=10+(4.00*s);
            if (s==0) retorno=0;
         }
     }
  }
  document.getElementById('pvp').innerHTML="<b>" + retorno + "</b>";
  return true;
}
