<!--
var date_from;
var date_to;

function calendar_init()
{
  date_from = new calendar3(document.forms['tipsters'].elements['date_from']);
  date_to = new calendar3(document.forms['tipsters'].elements['date_to']);
}

function pos(user_id)
{
  var rating,rating_pos;

  if (user_id>0)
  {
    rating = document.getElementById('rating');
    rating_pos = document.getElementById('rating_pos');
    rating_pos.innerHTML = rating.innerHTML;
  }

  return true;
}

-->
