﻿$addHandlers(theForm['commentCaptcha'], {
  focus: function () {

    theForm['commentCaptcha'].className='onfocus';
  },
  blur: function() {
    theForm['commentCaptcha'].className='';
  }
});

