<!--
    var singleFieldMax = 80;
    function splitString(el, to, id) {
        var str     = el.value;
        var splitTo = to.split(" ");
        var max     = splitTo.length * singleFieldMax;
        var remain  = max - str.length;            if (remain < 0) {  remain = 0; el.value = str.substr(0, max);  }
        var printTo = document.getElementById(id); if (printTo) printTo.innerHTML = remain;
        var pop = 0;
        while (splitTo[pop]) {
            var current = document.getElementById(splitTo[pop]);
            if (str.length > 0) {
                current.value = str.substr(0, singleFieldMax);
                str = str.substr(singleFieldMax);
            } else {
                current.value = "";
            }
            pop++;
        }
    }    
//-->