
function autotab(current,to){
    if (current.getAttribute && 
      current.value.length==current.getAttribute("maxlength")) {
      	to.setAttribute('autocomplete','off'); 
        to.focus(); 
        }
}
