// JavaScript Document
var formBlock = function() {
        if (document.getElementById("SubmitForm")) {
                a = document.getElementById("SubmitForm");
                if (isNaN(a.value) == true) {
                        a.value = 0;
                } else {
                        a.value = parseInt(a.value) + 1;
                }
        }
        setTimeout("formBlock()", 1000);
}
formBlock();
