<!-- Auto tabulation IE-Netscape -->

function autoTab(obj, nextobj, mlength) {
 	if(!mlength) {
   	mlength = obj.size;
 	}

 	if(obj.value.length >= mlength) {
   	nextobj.focus();
   	obj.value = obj.value.substr(0, mlength);
 	}
}
