/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function reloadCaptcha () {
   var obj = document.getElementById("captchaImg");
   var src = obj.src;
   var pos = src.indexOf('?');
   if (pos >= 0) {
      src = src.substr(0, pos);
   }
   var date = new Date();
   obj.src = src + '?v=' + date.getTime();
   return false;
}
