Thanks for the reply.
Here's a portion of the script that defines the MaxLenght of the fields. I pulled some data out of the middle. The jn1 (New job) and jne1 (Existing job) are the fields I'm attempting to increase to 5 characters.
Option Explicit
Sub NewForm()
Send "<html><head><title>New Project Information</title></head>"
Send "<body bgcolor=000000 background=/cgi-bin/pkcegrey.gif><BR>"
Send "<center><table border=0 width=750 cellpadding=4 background=images/JE-Background.gif><FORM ACTION=/cgi-bin/jobbase.exe METHOD=post><INPUT type=hidden name=do maxlength=1 size=1 value=1><tr><td width=750> </td></tr>"
Send "<tr><td> <img src=/images/spacer.gif width=122 height=1><INPUT name=jn1 maxlength=5 size=6> <INPUT name=jn2 maxlength=2 size=3> <INPUT name=jn3 maxlength=3 size=4><img src=/images/spacer.gif width=266 height=1><INPUT name=d1 maxlength=2 size=2 value=" & Month(Date) & "> <INPUT name=d2 maxlength=2 size=2 value=" & Day(Date) & "> <INPUT name=d3 maxlength=2 size=2 value= " & Mid(Year(Date), 3) & "></td></tr>"
Send "<tr><td> <img src=/images/spacer.gif width=101 height=1><INPUT name=proj maxlength=75 size=40></td></tr>"
Send "<tr><td> <img src=/images/spacer.gif width=50 height=1><INPUT name=client maxlength=75 size=40><img src=/images/spacer.gif width=86 height=1><INPUT name=mapsco1 maxlength=4 size=5> <INPUT name=mapsco2 maxlength=1 size=2>  <img src=/images/spacer.gif width=35 height=1><img src=/images/spacer.gif width=35 height=1><INPUT name=mapsco3 type=radio Value=D Checked></td></tr>"
BigOptions
Send "</select></td></tr>"
Send "<tr><td width=750><img src=/images/spacer.gif width=152 height=1><INPUT name=jne1 maxlength=5 size=6> <INPUT name=jne2 maxlength=2 size=3> <INPUT name=jne3 maxlength=3 size=4></b></font>"
Send "<img src=/images/spacer.gif width=295 height=1><INPUT type=submit value=Submit><INPUT type=reset value=Reset></Form></tr></table></center><BR></body></html>"
End Sub
Sub LookUpJob()
Dim job As String
Dim i
job = GetCgiValue("jne1") & "-" & GetCgiValue("jne2") & "." & GetCgiValue("jne3")
If Len(job) <> 11 Then Send "<body bgcolor=000000><SCRIPT LANGUAGE=JavaScript>function goHist(a){history.go(a);}</script><font size=4 face=arial color=FF0000><Center><b>You have entered an invalid Job Number! Please go back and enter the information correctly.</B><BR><FORM METHOD=post><INPUT TYPE=button VALUE=" & Chr(34) & "Go back and fix the problem" & Chr(34) & "onClick=goHist(-1)></form></center>": GoTo Done
rs.MoveLast: rs.MoveFirst
For i = 1 To rs.RecordCount
If job = rs!jobno Then GoTo FillForm
rs.MoveNext
Next i
GoTo FixError
FillForm:
Send "<html><head><title>New Project Information</title></head>" '<BASE TARGET=DATA>"
Send "<body bgcolor=000000 background=/cgi-bin/pkcegrey.gif><BR>"
Send "<center><table border=0 width=750 cellpadding=4 background=images/JE-Background.gif><FORM ACTION=/cgi-bin/jobbase.exe METHOD=post><INPUT type=hidden name=do maxlength=1 size=1 value=3><tr><td width=750> </td></tr>"
Send "<tr><td> <img src=/images/spacer.gif width=122 height=1><INPUT name=jn1 maxlength=5 size=6 value=" & Mid(rs!jobno, 1, 6) & "> <INPUT name=jn2 maxlength=2 size=3 value=" & Mid(rs!jobno, 6, 2) & "> <INPUT name=jn3 maxlength=3 size=4 value=" & Mid(rs!jobno, 9, 3) & "><img src=/images/spacer.gif width=266 height=1><INPUT name=d1 maxlength=2 size=2 value=" & Month(rs!Date) & "> <INPUT name=d2 maxlength=2 size=2 value=" & Day(rs!Date) & "> <INPUT name=d3 maxlength=2 size=2 value= " & Mid(Year(rs!Date), 3) & "></td></tr>"
Send "<tr><td> <img src=/images/spacer.gif width=101 height=1><INPUT name=proj maxlength=75 size=60 value=" & Chr(39) & Mid(rs!projectname, 1, 75) & Chr(39) & "></td></tr>"
Send "<tr><td> <img src=/images/spacer.gif width=50 height=1><INPUT name=client maxlength=75 size=40 value=" & Chr(39) & Mid(rs!client, 1, 75) & Chr(39) & "><img src=/images/spacer.gif width=82 height=1>"