
function reloadFreecap()
{
  if (document.getElementById) {
    objId = document.getElementById('freecap');
    if (objId) {
      objSrc = objId.src;
      objFln = objSrc.substring(0, objSrc.lastIndexOf('.') + 4);
      objId.src = objFln + '?' + Math.round(Math.random() * 10000);
    }
  }
}

$(document).ready(function() {
  $('#submit').each(function() {
      $(this).css('display', 'none');
  });
});