function chkInput(i,n,max){
	if(i.value.length >= max){
		i.form.elements[n].focus();
	}
}