ConfirmIt Auto submit after several seconds

This script "pushes" the "Next" button after 10 seconds.

//surveyscripting.com

Put this code in you comments so it won't be visible in the data file:
<script type="text/javascript">   
function autoSubmit() {
  if (secs < 2) {
    secs++;
  } else {
    window.clearInterval(activeWindow);
    document.ctlform.submit();
  }
}
var activeWindow = window.setInterval('autoSubmit()', 1000);
var secs = 0;
</script>