Sub T1_OnKeyup()
 if len(formQuery.t1.value)=5 then
	formQuery.t2.focus()
 end if
End Sub
Sub T2_OnKeyup()
 if len(formQuery.t2.value)=5 then
	formQuery.t3.focus()
 end if
End Sub
Sub T3_OnKeyup()
 if len(formQuery.t3.value)=5 then
	formQuery.t4.focus()
 end if
End Sub
Sub T4_OnKeyup()
 if len(formQuery.t4.value)=5 then
	formQuery.Submit.focus()
 end if
End Sub
