<!--
function checkTextInput() {
        for(var i = 0; i < arguments.length; i += 2) {
                id = arguments[i];
                field = arguments[i + 1];
                if (document.getElementById(id).value == "") {
                        alert("Please input value: " + field);
                        return false;
                }
        }
        return true;
}
-->

