function moveToNextField(currentField,nextFieldId){
if(currentField.value.length>=currentField.maxLength){
document.getElementById(nextFieldId).focus();
}
}
function moveToNextField(currentField,nextFieldId){
if(currentField.value.length>=currentField.maxLength){
document.getElementById(nextFieldId).focus();
}
}