// Auto tabbing script
// By: Derek Keith
// DBS>Interactive
// http://www.dbsinteractive.com

function autotab(original,destination){
if (original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
destination.focus()
}
