function limit(item){
var maxlen=1000;
var limstr = document.getElementById(item);
limstr.value.length>maxlen?limstr.value=limstr.value.replace(/.$/,''):null;
}

