[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

Validate asp without clearing the form

Asked by mschmidt14 in Active Server Pages (ASP)

Tags: asp, Access 2003

Hello Experts,
I created an asp page on our intranet that is HUGE for our service techs.  It has 190 questions on it, most of them being one character answers (either O,R,X).  I am trying to figure out a way to get it so that they can only enter one character and get a message if they do otherwise.  Right now, the way I have it started, it is going to be HUGE LONG code and when I do enter more than one character in a field it gives me the message but clears the whole form.  NOT fun.

I will admit I am SO not a good programmer...in fact this is my first attempt on my own...not using someone else stuff.  So don't laugh...just help.  :-)
I will attach my code.  Ugh
Thank you.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
832:
833:
834:
835:
836:
837:
838:
839:
840:
841:
842:
843:
844:
845:
846:
847:
848:
849:
850:
851:
852:
853:
854:
855:
856:
857:
858:
859:
860:
861:
862:
863:
864:
865:
866:
867:
868:
869:
870:
871:
872:
873:
874:
875:
876:
877:
878:
879:
880:
881:
882:
883:
884:
885:
886:
887:
888:
889:
890:
891:
892:
893:
894:
895:
896:
897:
898:
899:
900:
901:
902:
903:
904:
905:
906:
907:
908:
909:
910:
911:
912:
913:
914:
915:
916:
917:
918:
919:
920:
921:
922:
923:
924:
925:
926:
927:
928:
929:
930:
931:
932:
933:
934:
935:
936:
937:
938:
939:
940:
941:
942:
943:
944:
945:
946:
947:
948:
949:
950:
951:
952:
953:
954:
955:
956:
957:
958:
959:
960:
961:
962:
963:
964:
965:
966:
967:
968:
969:
970:
971:
972:
973:
974:
975:
976:
977:
978:
979:
980:
981:
982:
983:
984:
985:
986:
987:
988:
989:
990:
991:
992:
993:
994:
995:
996:
997:
998:
999:
1000:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
1277:
1278:
1279:
1280:
1281:
1282:
1283:
1284:
1285:
1286:
1287:
1288:
1289:
1290:
1291:
1292:
1293:
1294:
1295:
1296:
1297:
1298:
1299:
1300:
1301:
1302:
1303:
1304:
1305:
1306:
1307:
1308:
1309:
1310:
1311:
1312:
1313:
1314:
1315:
1316:
1317:
1318:
1319:
1320:
1321:
1322:
1323:
1324:
1325:
1326:
1327:
1328:
1329:
1330:
1331:
1332:
1333:
1334:
1335:
1336:
1337:
1338:
1339:
1340:
1341:
1342:
1343:
1344:
1345:
1346:
1347:
1348:
1349:
1350:
1351:
1352:
1353:
1354:
1355:
1356:
1357:
1358:
1359:
1360:
1361:
1362:
1363:
1364:
1365:
1366:
1367:
1368:
1369:
1370:
1371:
1372:
1373:
1374:
1375:
1376:
1377:
1378:
1379:
1380:
1381:
1382:
1383:
1384:
1385:
1386:
1387:
1388:
1389:
1390:
1391:
1392:
1393:
1394:
1395:
1396:
1397:
1398:
1399:
1400:
1401:
1402:
1403:
1404:
1405:
1406:
1407:
1408:
1409:
1410:
1411:
1412:
1413:
1414:
1415:
1416:
1417:
1418:
1419:
1420:
1421:
1422:
1423:
1424:
1425:
1426:
1427:
1428:
1429:
1430:
1431:
1432:
1433:
1434:
1435:
1436:
1437:
1438:
1439:
1440:
1441:
1442:
1443:
1444:
1445:
1446:
1447:
1448:
1449:
1450:
1451:
1452:
1453:
1454:
1455:
1456:
1457:
1458:
1459:
1460:
1461:
1462:
1463:
1464:
1465:
1466:
1467:
1468:
1469:
1470:
1471:
1472:
1473:
1474:
1475:
1476:
1477:
1478:
1479:
1480:
1481:
1482:
1483:
1484:
1485:
1486:
1487:
1488:
1489:
1490:
1491:
1492:
1493:
1494:
1495:
1496:
1497:
1498:
1499:
1500:
1501:
1502:
1503:
1504:
1505:
1506:
1507:
1508:
1509:
1510:
1511:
1512:
1513:
1514:
1515:
1516:
1517:
1518:
1519:
1520:
1521:
1522:
1523:
1524:
1525:
1526:
1527:
1528:
1529:
1530:
1531:
1532:
<%@ Language="vbScript" %>
<!--#include file="Connections/jxe.asp" -->
 
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 
<html>
<%
Dim rsUnitNo
Dim rsUnitNo_numRows
 
Set rsUnitNo= Server.CreateObject("ADODB.Recordset")
rsUnitNo.ActiveConnection = MM_JXECM_STRING
rsUnitNo.Source = "SELECT UnitNo FROM tblUnits ORDER BY UnitNo ASC"
rsUnitNo.CursorType = 0
rsUnitNo.CursorLocation = 2
rsUnitNo.LockType = 1
rsUnitNo.Open()
 
rsUnitNo_numRows = 0
%>
 
<% 
     
      Dim rstUsers
      Dim sSQL
      Dim bIsPost, bIsUnitNoValid, bIsRONumberValid,bIsABSValid,bIsEEngineValid, bIsClutchBrakesValid, bIsGlassValid, bWriteToDB
      Dim sUnitClass, sRONumberClass, sClass
      Dim sError
      Dim iField
 
      ' Create the recordset
      sSQL = "SELECT * FROM tblMDInspection"
      Set rstUsers = CreateObject("ADODB.Recordset")
      rstUsers.ActiveConnection = MM_JXECM_STRING
      rstUsers.LockType = 3 ' adLockOptimistic
      rstUsers.Open sSQL
 
 
      ' Check to see if the user has posted
      bIsPost = (Request.ServerVariables("Request_Method") = "POST")
 
      ' If this is a post, check to see if the posted data is valid
      If bIsPost Then
 
         sError = ""
 
         ' Check the UnitNo
         If Trim(Request("tUnitNo")) <> "" Then
            sError = "Please enter a UnitNo.<br />"
            bIsUnitNoValid = False
         Else 
            bIsUnitNoValid = True
         End If
 
         If Not bIsUnitNoValid Then 
            sUnitClass = "error"
         End If
 
		  ' Check the RO
         If Trim(Request("tRONumber")) = "" Then
            sError = sError & "Please enter the RO Number.<br />"
            bIsRONumberValid = False
         Else
            bIsRONumberValid = True
         End If
 
         If Not bIsRONumberValid Then 
            sRONumberClass = "error"
         End If
 
      
      ' Check ABS
         If Len(Trim(Request("tABS"))) > 1 Then
            sError = "In at least one field you entered too many letters...You can only enter a O, R or X where indicated.<br />"
            bIsABSValid = False
         Else
            bIsABSValid = True
         End If
 
         If Not bIsABSValid Then 
            sClass = "error"
         End If
 
		
		' Check Electronic Engine
         If Len(Trim(Request("tElectronicEngine"))) > 1 Then
            sError = "In at least one field you entered too many letters...You can only enter a O, R or X where indicated.<br />"
            bIsEEngineValid = False
         Else
            bIsEEngineValid = True
         End If
 
         If Not bIsEEngineValid Then 
            sClass = "error"
         End If
         
         ' Check Clutch Brakes
         If Len(Trim(Request("tClutchBrakes"))) > 1 Then
            sError = "In at least one field you entered too many letters...You can only enter a O, R or X where indicated.<br />"
            bIsClutchBrakesValid = False
         Else
            bIsClutchBrakesValid= True
         End If
 
         If Not bIsClutchBrakesValid Then 
            sClass = "error"
         End If
 
		' Check Glass
         If Len(Trim(Request("tGlass"))) > 1 Then
            sError = "In at least one field you entered too many letters...You can only enter a O, R or X where indicated.<br />"
            bIsGlassValid = False
         Else
            bIsGlassValid= True
         End If
 
         If Not bIsGlassValid Then 
            sClass = "error"
         End If
 
 
 
         ' Set the flag to write to the DB only if all data is valid
         bWriteToDB = bIsUnitNoValid And bIsRONumberValid And bIsABSValid And bIsEEngineValid And bIsClutchBrakesValid And bIsGlassValid
 
      Else
                 
         bWriteToDB = False
         bIsUnitNoValid = True
         bIsRONumberValid = True
         bIsABSValid = True
		  bIsEEngineValid = True
		  bIsClutchBrakesValid = True
         bIsGlassValid = True
 
      End If
 
      ' Write to the database if the form has been properly submitted
      If bWriteToDB Then
 
         rstUsers.AddNew
         rstUsers.Fields("UnitNo") = Request("UnitNo")
         rstUsers.Fields("DistanceLastPM") = Request("tDistanceLastPM")
         rstUsers.Fields("Odometer") = Request("tOdometer")
         rstUsers.Fields("RONumber") = Request("tRONumber")
         rstUsers.Fields("CustName") = Request("tCustName")
         rstUsers.Fields("CityState") = Request("tCityState")
         rstUsers.Fields("PMInspectionDate") = Request("tPMInspectionDate")
		  rstUsers.Fields("DOT") = Request("tDOT")
		  rstUsers.Fields("FranchNo") = Request("tFranchNo")
		  rstUsers.Fields("InspectedBy") = Request("tInspectedBy")
         rstUsers.Fields("DetectedDefects") = Request("tDetectedDefects")
		  rstUsers.Fields("Branch") = request("tBranch")
		  rstUsers.Fields("Right1") = request("tRight1")
         rstUsers.Fields("Right2") = request("tRight2")
         rstUsers.Fields("Right3") = request("tRight3")
         rstUsers.Fields("Right4") = request("tRight4")
         rstUsers.Fields("Right5") = request("tRight5")
         rstUsers.Fields("Left1") = request("tLeft1")
         rstUsers.Fields("Left2") = request("tLeft2")
		  rstUsers.Fields("Left3") = request("tLeft3")
		  rstUsers.Fields("Left4") = request("tLeft4")
		  rstUsers.Fields("Left5") = request("tLeft5")
		  rstUsers.Fields("ClutchPedal") = request("tClutchPedal")
		  rstUsers.Fields("EngineTemp") = request("tEngineTemp")
		  rstUsers.Fields("CoolantAdditive") = request("tCoolantAdditive")
		  rstUsers.Fields("CoolantProtection") = request("tCoolantProtection")
		  rstUsers.Fields("AirPressurePSI") = request("tAirPressurePSI")
		  rstUsers.Fields("PressureDropBreaks") = request("tPressureDropBreaks")
		  rstUsers.Fields("SheetMetal") = request("tSheetMetal")
		  rstUsers.Fields("GrillRadiator") = request("tGrillRadiator")
		  rstUsers.Fields("TrailerCordConnectors") = request("tTrailerCordConnectors")
		  rstUsers.Fields("AirLinesGladhands") = request("tAirLinesGladhands")
		  rstUsers.Fields("5thWheel") = request("t5thWheel")
		  rstUsers.Fields("HookEye") = request("tHookEye")
		  rstUsers.Fields("HighIdle") = request("tHighIdle")
		  rstUsers.Fields("LowIdle") = request("tLowIdle")
		  rstUsers.Fields("TestLoad1") = request("tTestLoad1")
		  rstUsers.Fields("TestLoad2") = request("tTestLoad2")
		  rstUsers.Fields("TestLoad3") = request("tTestLoad3")
		  rstUsers.Fields("TestLoad4") = request("tTestLoad4")
		  rstUsers.Fields("ChargingVoltage") = request("tChargingVoltage")
		  rstUsers.Fields("ChargingAmps") = request("tChargingAmps")
		  rstUsers.Fields("AirPressure") = request("tAirPressure")
		  rstUsers.Fields("ApprovedBy") = request("tApprovedBy")
		  rstUsers.Fields("Last6") = request("tLast6")
		  rstUsers.Fields("RF") = request("tRF")
		  rstUsers.Fields("RRF") = request("tRRF")
		  rstUsers.Fields("RRR") = request("tRRR")
		  rstUsers.Fields("LF") = request("tLF")
		  rstUsers.Fields("LRF") = request("tLRF")
		  rstUsers.Fields("LRR") = request("tLRR")
		  rstUsers.Fields("ABS") = request("tABS")
		  rstUsers.Fields("ElectronicEngine") = request("tElectronicEngine")
		  rstUsers.Fields("ClutchBrakes") = request("tClutchBrakes")
		  rstUsers.Fields("Glass") = request("tGlass")
		  rstUsers.Fields("DoorWindowOperation") = request("tDoorWindowOperation")
		  rstUsers.Fields("ValveBreakwayTest") = request("tValveBreakwayTest")
		  rstUsers.Fields("Radio") = request("tRadio")
 		  rstUsers.Fields("InteriorLights") = request("tInteriorLights")
		  rstUsers.Fields("SeatsFloormats") = request("tSeatsFloormats")
		  rstUsers.Fields("DoorPanelsHeadliner") = request("tDoorPanelsHeadliner")
		  rstUsers.Fields("SleeperDash") = request("tSleeperDash")
 		  rstUsers.Fields("DoghouseCover") = request("tDoghouseCover")
    	  rstUsers.Fields("InstrumentsGauges") = request("tInstrumentsGauges")
		  rstUsers.Fields("SpeedOdo") = request("tSpeedOdo")
		  rstUsers.Fields("IlluminationGaugesLights") = request("tIlluminationGaugesLights")
		  rstUsers.Fields("ACFilter") = request("tACFilter")
		  rstUsers.Fields("WiperCondition") = request("tWiperCondition")
		  rstUsers.Fields("WiperOperation") = request("tWiperOperation")
		  rstUsers.Fields("Horns") = request("tHorns")
		  rstUsers.Fields("Mirrors") = request("tMirrors")
		  rstUsers.Fields("DrainAirTanks") = request("tDrainAirTanks")
		  rstUsers.Fields("LowAirWarning") = request("tLowAirWarning")
		  rstUsers.Fields("OperationSpringBreaks") = request("tOperationSpringBreaks")
		  rstUsers.Fields("FireExtinguisher") = request("tFireExtinguisher")
		  rstUsers.Fields("FlareKit") = request("tFlareKit")
		  rstUsers.Fields("Headlights") = request("tHeadlights")
		  rstUsers.Fields("RoadLights") = request("tRoadLights")
		  rstUsers.Fields("ClearanceLights") = request("tClearanceLights")
		  rstUsers.Fields("TurnSignals") = request("tTurnSignals")
		  rstUsers.Fields("EmergencyFlasher") = request("tEmergencyFlasher")
		  rstUsers.Fields("BrakeLights") = request("tBrakeLights")
		  rstUsers.Fields("BackupLights") = request("tBackupLights")
		  rstUsers.Fields("LicensePlates") = request("tLicensePlates")
		  rstUsers.Fields("MudFlaps") = request("tMudFlaps")
		  rstUsers.Fields("FuelTankMount") = request("tFuelTankMount")
		  rstUsers.Fields("LubeHinges") = request("tLubeHinges")
		  rstUsers.Fields("BodyMounts") = request("tBodyMounts")
		  rstUsers.Fields("InspectCable") = request("tInspectCable")
		  rstUsers.Fields("Mounts") = request("tMounts")
		  rstUsers.Fields("FrontPivot") = request("tFrontPivot")
		  rstUsers.Fields("JackOperation") = request("tJackOperation")
		  rstUsers.Fields("SafetyLock") = request("tSafetyLock")
		  rstUsers.Fields("CanTiltBar") = request("tCanTiltBar")
		  rstUsers.Fields("RoofVent") = request("tRoofVent")
		  rstUsers.Fields("CoolantLevel") = request("tCoolantLevel")
		  rstUsers.Fields("RadiatorCap") = request("tRadiatorCap")
		  rstUsers.Fields("PressureTest") = request("tPressureTest")
		  rstUsers.Fields("WaterFilter") = request("tWaterFilter")
		  rstUsers.Fields("Hoses") = request("tHoses")
		  rstUsers.Fields("RadiatorMounting") = request("tRadiatorMounting")
		  rstUsers.Fields("FanShroud") = request("tFanShroud")
		  rstUsers.Fields("FanHub") = request("tFanHub")
		  rstUsers.Fields("FanClutch") = request("tFanClutch")
		  rstUsers.Fields("WaterPump") = request("tWaterPump")
		  rstUsers.Fields("RadiatorExterior") = request("tRadiatorExterior")
		  rstUsers.Fields("AirCleaner") = request("tAirCleaner")
		  rstUsers.Fields("ContaminantAccum") = request("tContaminantAccum")
		  rstUsers.Fields("AirCleanerRestriction") = request("tAirCleanerRestriction")
		  rstUsers.Fields("VacuatorValve") = request("tVacuatorValve")
		  rstUsers.Fields("MountingBolts") = request("tMountingBolts")
		  rstUsers.Fields("Leaks") = request("tLeaks")
		  rstUsers.Fields("Interference") = request("tInterference")
		  rstUsers.Fields("EngineOilLevel") = request("tEngineOilLevel")
		  rstUsers.Fields("PowerSteering") = request("tPowerSteering")
		  rstUsers.Fields("ReservoirLevel") = request("tReservoirLevel")
		  rstUsers.Fields("FluidCondition") = request("tFluidCondition")
		  rstUsers.Fields("FSFilter") = request("tFSFilter")
		  rstUsers.Fields("DriveBelt") = request("tDriveBelt")
		  rstUsers.Fields("ACCompressor") = request("tACCompressor")
		  rstUsers.Fields("ColdStart") = request("tColdStart")
		  rstUsers.Fields("RadiusRodTorqueArms") = request("tRadiusRodTorqueArms")
		  rstUsers.Fields("ChassisFrames") = request("tChassisFrames")
		  rstUsers.Fields("ExhaustSystem") = request("tExhaustSystem")
		  rstUsers.Fields("SpringShackles") = request("tSpringShackles")
		  rstUsers.Fields("KingPin") = request("tKingPin")
		  rstUsers.Fields("WheelBearing") = request("tWheelBearing")
		  rstUsers.Fields("FrontHub") = request("tFrontHub")
		  rstUsers.Fields("SpringLeaves") = request("tSpringLeaves")
		  rstUsers.Fields("UBoltTorque") = request("tUBoltTorque")
		  rstUsers.Fields("CoolantLeak") = request("tCoolantLeak")
		  rstUsers.Fields("EngineOilLeak") = request("tEngineOilLeak")
		  rstUsers.Fields("PowerSteeringLeak") = request("tPowerSteeringLeak")
		  rstUsers.Fields("FuelTankLeak") = request("tFuelTankLeak")
		  rstUsers.Fields("FuelLineLeak") = request("tFuelLineLeak")
		  rstUsers.Fields("TransmissionLeak") = request("tTransmissionLeak")
		  rstUsers.Fields("AxlesLeak") = request("tAxlesLeak")
		  rstUsers.Fields("InnerOuterSealsLeak") = request("tInnerOuterSealsLeak")
		  rstUsers.Fields("EngineTrannyMounts") = request("tEngineTrannyMounts")
		  rstUsers.Fields("TrannyLubeLevel") = request("tTrannyLubeLevel")
		  rstUsers.Fields("Drivelines") = request("tDrivelines")
		  rstUsers.Fields("RAxleLubeLevel") = request("tRAxleLubeLevel")
		  rstUsers.Fields("RAxleBreathers") = request("tRAxleBreathers")
		  rstUsers.Fields("BrakeHoses") = request("tBrakeHoses")
		  rstUsers.Fields("AdjustBrakes") = request("tAdjustBrakes")
		  rstUsers.Fields("BrakesLining") = request("tBrakesLining")
		  rstUsers.Fields("ChassisLube") = request("tChassisLube")
		  rstUsers.Fields("OverCharging") = request("tOverCharging")
		  rstUsers.Fields("RemoveCorrosion") = request("tRemoveCorrosion")
		  rstUsers.Fields("BoxMountingBolts") = request("tBoxMountingBolts")
		  rstUsers.Fields("MissingValveCaps") = request("tMissingValveCaps")
		  rstUsers.Fields("Cracks") = request("tCracks")
		  rstUsers.Fields("TandemMating") = request("tTandemMating")
		  rstUsers.Fields("IrregularWear") = request("tIrregularWear")
		  rstUsers.Fields("TirePressure") = request("tTirePressure")
		  rstUsers.Fields("SteeringFreePlay") = request("tSteeringFreePlay")
		  rstUsers.Fields("Shifting") = request("tShifting")
		  rstUsers.Fields("Brakes") = request("tBrakes")
		  rstUsers.Fields("EngineOperation") = request("tEngineOperation")
		  rstUsers.Fields("JakeBrake") = request("tJakeBrake")
		  rstUsers.Fields("SeatBelts") = request("tSeatBelts")
		  rstUsers.Fields("AirSeatOperation") = request("tAirSeatOperation")
		  rstUsers.Fields("Heaters") = request("tHeaters")
		  rstUsers.Fields("AirConditioner") = request("tAirConditioner")
		  rstUsers.Fields("FilterFinder") = request("tFilterFinder")
		  rstUsers.Fields("InteriorLiner") = request("tInteriorLiner")
		  rstUsers.Fields("DoorOperation") = request("tDoorOperation")
		  rstUsers.Fields("RollupDoor") = request("tRollupDoor")
		  rstUsers.Fields("LiftGate") = request("tLiftGate")
		  rstUsers.Fields("BodyMountBolts") = request("tBodyMountBolts")
		  rstUsers.Fields("InspectionSticker") = request("tInspectionSticker")
		  rstUsers.Fields("InspectionCompleted") = request("tInspectionCompleted")
		  rstUsers.Fields("DrainWater") = request("tDrainWater")
		  rstUsers.Fields("EngineOilAnalysis") = request("tEngineOilAnalysis")
		  rstUsers.Fields("EngineOilChange") = request("tEngineOilChange")
		  rstUsers.Fields("OilFilters") = request("tOilFilters")
		  rstUsers.Fields("ECMStatus") = request("tECMStatus")
		  rstUsers.Fields("Codes") = request("tCodes")
		  rstUsers.Fields("FuelFilter") = request("tFuelFilter")
		  rstUsers.Fields("CrankInspection") = request("tCrankInspection")
		  rstUsers.Fields("CrankChassisGround") = request("tCrankChassisGround")
		  rstUsers.Fields("ChargingInspection") = request("tChargingInspection")
		  rstUsers.Fields("SteeringGear") = request("tSteeringGear")
		  rstUsers.Fields("SteeringShaft") = request("tSteeringShaft")
		  rstUsers.Fields("PitmanArm") = request("tPitmanArm")
		  rstUsers.Fields("DragLink") = request("tDragLink")
		  rstUsers.Fields("SteeringArms") = request("tSteeringArms")
		  rstUsers.Fields("TieRodArms") = request("tTieRodArms")
		  rstUsers.Fields("TieRodEnds") = request("tTieRodEnds")
		   
         rstUsers.Update
 
      End If
%>
 
 
<BODY> 
 
<% If Not bWriteToDB Then %>
 
<p align="center"><font size="2" face="Comic Sans MS" color="#0000FF">B Service
- 12,500 Miles/10,000 KM or 90 Day - For MD ~~ B Service - 25,000 Miles/40,000
KM or 90 Day - For HD</font></p>
 
 
 
 
<p align="center"><font face="Comic Sans MS" color="#0000FF" size="4">PREVENTATIVE
MAINTENANCE INSPECTION</font></p>
 
 
 
 
<p align="center"><font face="Comic Sans MS" color="#0000FF" size="4">MEDIUM
DUTY OR CLASS 8</font></p>
 
 
 
 
<p><font color="#FF0000">&nbsp;* Indicates a field that must be completed.</font></p>
 
  <form name="form1" action="<%=Request.ServerVariables("SCRIPT_NAME")%>" method="POST" >
  <% If sError <> "" Then %>
   <p class="error" width="105"><font color="#00cc99" size="4"><strong><%=sError%></strong></font>
     <% End If %><br>
       <table>
      <table width="1183" height="86">
     
   <tr>
            <td class="firstcol <%=sUnitClass%>" width="107" style="border-top-style: solid" ><font color="#FF0000">*</font>
              Vehicle No.</td>
          	  <td style="border-top-style: solid" width="308">
          <select name="UnitNo">
           
                      <%
While (NOT rsUnitNo.EOF)
%>			
          <option value="<%=(rsUnitNo.Fields.Item("UnitNo").Value)%>"><%=(rsUnitNo.Fields.Item("UnitNo").Value)%></option>
          
          <%
  rsUnitNo.MoveNext()
Wend
If (rsUnitNo.CursorType > 0) Then
  rsUnitNo.MoveFirst
Else
  rsUnitNo.Requery
End If
%>
 
			</select></td>
			
			  <td class="firstcol" width="233" style="border-top-style: solid"><font color="#FF0000">*</font>
                Distance Since Last PM</td>
            <td width="147" style="border-top-style: solid"><input type="text" name="tDistanceLastPM" value="<%=Request("tDistanceLastPM")%>"/></td>
 
			  <td class="firstcol" width="178" style="border-top-style: solid"><font color="#FF0000">*</font>
                Customer Name</td>
            <td width="263" style="border-top-style: solid"><input type="text" name="tCustName" value="<%Request("tCustName")%>" size="36" /></td>
</tr>
<tr>
			
			  <td class="firstcol" width="84"> <font color="#FF0000">*</font> Odometer</td>
            <td width="160"><input type="text" name="tOdometer" value="<%Request("tOdometer")%>" /></td>
			
			  <td class="firstcol <%=sRONumberClass%>" width="193"><font color="#FF0000">*</font>
                RO Number</td>
            <td width="151"><input type="text" name="tRONumber" value="<%Request("tRONumber")%>" /></td>
 
			  <td class="firstcol" width="154">Franchise City, State</td>
            <td width="263"><input type="text" name="tCityState" value="<%Request("tCityState")%>" size="36" /></td>     
</tr>
 <tr>
         		<td class="firstcol" width="107" style="border-bottom-style: solid"><font color="#FF0000">*</font>Date&nbsp;
                  <font color="#FF0000">xx/xx/xx</font></td>
              <td width="308" style="border-bottom-style: solid"><input type="text" name="tPMInspectionDate" value="<%Request("tPMInspectionDate")%>" /></td>
        
        
             <td class="firstcol" width="177" style="border-bottom-style: solid">Federal DOT Due?
              <font color="#FF0000">(yes/no)</font></td>
             <td width="144" style="border-bottom-style: solid"><input type="text" name="tDOT" value="<%Request("tDOT")%>" /></td>
         
         		<td class="firstcol" width="156" style="border-bottom-style: solid">Franchise No</td>
              <td width="265" style="border-bottom-style: solid"><input type="text" name="tFranchNo" value="<%Request("tFranchNo")%>" size="36" /></td>
    </tr>
         </TABLE>
		  <TABLE width="1153">
         <tr>
         		<td width="1145">
                  <p align="center">INSPECT ALL OF THE COMPONENTS BELOW</p>
                  <p align="center">REPAIR CODES: O=OK&nbsp; R=REPAIR
                  REQUIRED&nbsp; X =REPAIR COMPLETED</p>
                </td>
                
         </tr>
			</TABLE>
			<TABLE width="1382" height="2392">
         <tr>
         		<td class="firstcol" bgcolor="#C0C0C0" height="22" width="469" style="border-left-style: solid">INITIAL DRIVE-IN</td>
                <td bgcolor="#C0C0C0" height="22" width="178">
                  <p align="left">&nbsp;</p>
                </td>
                <td class="firstcol" bgcolor="#C0C0C0" height="22" width="420" style="border-left-style: solid">CIRCLE INSPECTION (continued)</td>
                <td bgcolor="#C0C0C0" height="22" width="129" style="border-right-style: solid">
                  <p align="left">&nbsp;</p>
                </td>
         </tr>
 <tr>
         		<td class="firstcol" height="19" width="469" style="border-left-style: solid">ABS - Check Fault Codes</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tABS" value="<%Request("tABS")%>"/><font size="1">O,R,X</font></td>
             <td class="firstcol" height="19" width="420" style="border-left-style: solid">License Plates and Permits Current</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tLicensePlates" value="<%Request("tLicensePlates")%>"/><font size="1">O,R,X</font></td>
 
         </tr>
         <tr>		
         		<td class="firstcol" height="24" width="469" style="border-left-style: solid">Electronic Engine - Check Fault Codes</td>
                <td height="24" width="178">
                  <p align="left"><input type="text" name="tElectronicEngine" value="<%Request("tElectronicEngine")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="24" width="420" style="border-left-style: solid">Mud Flaps</td>
                <td height="24" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tMudFlaps" value="<%Request("tMudFlaps")%>"/><font size="1">O,R,X</font></td>
 
         </tr>
         <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Clutch Brakes</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tClutchBrakes" value="<%Request("tClutchBrakes")%>"/><font size="1">O,R,X</font></td>
             <td class="firstcol" height="19" width="420" style="border-left-style: solid">Fuel Tank Mntng/Torque Mntng Straps</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tFuelTankMount" value="<%Request("tFuelTankMount")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		  <tr>			
				<td class="firstcol" height="26" width="469" style="border-left-style: solid">Clutch Pedal Free Travel</td>
                <td height="26" width="178"><input type="text" name="tClutchPedal" value="<%Request("tClutchPedal")%>" inches</td size="14"><font size="1">inches</font>
              <td class="firstcol" height="26" width="420" style="border-left-style: solid">Lubricate Door Hinges, Latches</td>
                <td height="26" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tLubeHinges" value="<%Request("tLubeHinges")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>		
<tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Glass for Cracks or Chips</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tGlass" value="<%Request("tGlass")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Body Mounts Cab/Sleeper</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tBodyMounts" value="<%Request("tBodyMounts")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		  <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Door Window Operation</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tDoorWindow" value="<%Request("tDoorWindow")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Body Sides and Roof Panels <font color="#FF0000">(Class 8 Only)</font></td>
                <td height="19" width="129" style="border-right-style: solid">
                  <input type="text" name="tRoofPanels" value="<%Request("tRoofPanels")%>"/><font size="1">O,R,X</font>
                  </td>
 
		  </tr>
		  <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Tractor Protection Valve Breakway Test</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tValveBreakwayTest" value="<%Request("tValveBreakwayTest")%>"/><font size="1">O,R,X</font></td>
              <td  bgcolor="#C0C0C0" class="firstcol" height="19" width="420" style="border-left-style: solid">CAB
                - COE: Hold Down Latches</td>
                <td  bgcolor="#C0C0C0" height="19" width="129" style="border-right-style: solid">
                  &nbsp;
                  </td>
 
		  </tr>
 
		 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Radio</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tRadio" value="<%Request("tRadio")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">Inspect
                Clutch Cable (If Applicable)</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tInspectCable" value="<%Request("tInspectCable")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
			<tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Interior Lights</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tInteriorLights" value="<%Request("tInteriorLights")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">Mounts</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tMounts" value="<%Request("tMounts")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
			<tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Seats, Floor Mats</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tSeatsFloormats" value="<%Request("tSeatsFloormats")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">Front
                Pivot Assembly</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tFrontPivot" value="<%Request("tFrontPivot")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Door Panels, Headliner</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tDoorPanels" value="<%Request("tDoorPanels")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">Jack
                Operation</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tJackOperation" value="<%Request("tJackOperation")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
			<tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Sleeper, Dash</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tSleeperDash" value="<%Request("tSleeperDash")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">Safety
                Lock, Tip-Over Stop</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tSafetyLock" value="<%Request("tSafetyLock")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Doghouse Cover</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tDoghouseCover" value="<%Request("tDoghouseCover")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Can Tilt Torsion Bar</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tCanTiltBar" value="<%Request("tCanTiltBar")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Instruments and Gauges</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tInstrumentsGauges" value="<%Request("tInstrumentsGauges")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Roof Vent</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tRoofVent" value="<%Request("tRoofVent")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
 
			<tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Speedometer/Odometer</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tSpeedOdo" value="<%Request("tSpeedOdo")%>"/><font size="1">O,R,X</font></td>
              <td bgcolor="#C0C0C0" class="firstcol" height="19" width="420" style="border-left-style: solid">ENGINE
                SERVICE</td>
                <td bgcolor="#C0C0C0" height="19" width="129" style="border-right-style: solid">
                  &nbsp;
                  </td>
 
    	  </tr>
		  <tr>		
				<td class="firstcol" height="25" width="469" style="border-left-style: solid">Engine Temperature</td>
                <td height="25" width="178"><input type="text" name="tEngineTemp" value="<%=Request("tEngineTemp")%>"/></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid"> Cooling:
                Check Supplemental Coolant&nbsp;Additive/Conditioner</td>
          		<td width="129" height="19" style="border-right-style: solid">
                  <p style="border-right-style: solid"></td>
             
		  </tr>
		 <tr>		
				<td class="firstcol" height="21" width="469" style="border-left-style: solid">Illumination, Gauges and Warning Lights</td>
                <td height="21" width="178">
                  <p align="left"><input type="text" name="tIlluminationGaugesLights" value="<%Request("tIlluminationGaugesLights")%>"/><font size="1">O,R,X</font></td>
                <td class="firstcol" height="25" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                  to Manufacturer Specifications</td>
                <td height="25" width="129" style="border-right-style: solid"><input type="text" name="tCoolantAdditive" value="<%=Request("tCoolantAdditive")%>" size="12"/>%</td>
             
                <td width="148" height="21">
 
		  </tr>
		 <tr>		
				<td class="firstcol" height="23" width="469" style="border-left-style: solid">Inspect A/C Filter, Clean if Applicable</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tACFilter" value="<%Request("tACFilter")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="21" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Coolant Level</td>
                <td height="21" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tCoolantLevel" value="<%Request("tCoolantLevel")%>"/><font size="1">O,R,X</font></td>
 
                <td width="148" height="23">
 
		  </tr>
		 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Wiper Operation</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tWiperOperation" value="<%Request("tWiperOperation")%>"/><font size="1">O,R,X</font></td>
             <td class="firstcol" height="23" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Coolant Protection-Attach test strip</td>
                <td height="23" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tCoolantProtection" value="<%=Request("tCoolantProtection")%>" size="12"/>°</td>
    
		  </tr>
		 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Wiper Blade Condition</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tWiperCondition" value="<%Request("tWiperCondition")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Test Radiator Cap</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tRadiatorCap" value="<%Request("tRadiatorCap")%>"/><font size="1">O,R,X</font></td>
    
		  </tr>
		 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Horns (Electric and Air)</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tHorns" value="<%Request("tHorns")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Pressure Test/Check Leaks</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tPressureTest" value="<%Request("tPressureTest")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Mirrors/Heated/Motorized Operation</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tMirrors" value="<%Request("tMirrors")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Replace Water Filter (every 12 mos)</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tWaterFilter" value="<%Request("tWaterFilter")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		  <tr>
			<td bgcolor="#C0C0C0" class="firstcol" height="21" width="469" style="border-left-style: solid">SAFETY EQUIPMENT</td>
                <td bgcolor="#C0C0C0" height="21" width="178">
                  </td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Hose Condition and Connections</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tHoses" value="<%Request("tHoses")%>"/><font size="1">O,R,X</font></td>
 
		<tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Drain Water from Air Tanks</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tDrainAirTanks" value="<%Request("tDrainAirTanks")%>"/><font size="1">O,R,X</font></td>
			<td class="firstcol" height="21" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Radiator Mounting</td>
                <td height="21" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tRadiatorMounting" value="<%Request("tRadiatorMounting")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
 
		<tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Low Air Pressure Warning Device</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tLowAirWarning" value="<%Request("tLowAirWarning")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Fan Shroud</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tFanShroud" value="<%Request("tFanShroud")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
 
		<tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Emergency Operation of Spring Breaks</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tOperationSpringBreaks" value="<%Request("tOperationSpringBreaks")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Fan Hub Assembly and Idler Pulley</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tFanHub" value="<%Request("tFanHub")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
 
		<tr>	
		    <td class="firstcol" height="25" width="469" style="border-left-style: solid">Governed Air Pressure</td>
                <td height="25" width="178">
                  <p align="left"><input type="text" name="tAirPressurePSI" value="<%=Request("tAirPressurePSI")%>"/><font size="1">PSI</font>
            </td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Fan clutch &amp; Over-Ride Protection</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tFanClutch" value="<%Request("tFanClutch")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
 
		 <tr>	
		    <td class="firstcol" height="25" width="469" style="border-left-style: solid">Air Pressure Drop-Breaks Applied&nbsp;&nbsp;
              <font size="1">(PSI/min)(4Min)</font></td>
                <td height="25" width="178">
                  <p align="left"><input type="text" name="tPressureDropBreaks" value="<%=Request("tPressureDropBreaks")%>"/></td>
            <td width="420" style="border-left-style: solid" height="25">
              <p style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Check Water Pump for&nbsp; Leaks &amp; Excess Play</p>
            </td>
            <td style="border-right-style: solid" width="129" height="25">
                  <p align="left" style="border-right-style: solid"><input type="text" name="tWaterPump" value="<%Request("tWaterPump")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		  <tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Fire Extinguisher Charge</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tFireExtinguisher" value="<%Request("tFireExtinguisher")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="25" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Radiator - Exterior Condition</td>
                <td height="25" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tRadiatorExterior" value="<%Request("tRadiatorExterior")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		  <tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Flare Kit/Reflectors</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tFlareKit" value="<%Request("tFlareKit")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Air
                    Cleaner</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tAirCleaner" value="<%Request("tAirCleaner")%>"/><font size="1">O,R,X</font></td>
 
		  
		  
		  
		  </tr>
		  <tr>
			<td bgcolor="#C0C0C0" class="firstcol" height="21" width="469" style="border-left-style: solid">CIRCLE INSPECTION</td>
                <td bgcolor="#C0C0C0" height="21" width="178">
                  </td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Contaminant Accumulation</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tContaminantAccum" value="<%Request("tContaminantAccum")%>"/><font size="1">O,R,X</font></td>
 
		  
		  
		  
		 <tr>	
		    <td class="firstcol" height="21" width="469" style="border-left-style: solid">Physical Damage:</td>
                <td height="21" width="178">
                  <p align="left">
			<td class="firstcol" height="21" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Air Cleaner Restriction <font size="1">(Replace Element if
                  over 20 in H20)</font></td>
                <td height="21" width="129" style="border-right-style: solid">
                  <input type="text" name="tAirCleanerRestriction" value="<%Request("tAirCleanerRestriction")%>"/><font size="1">O,R,X</font></td>
 
		  
		  
		  
		  </tr>
		 <tr>	
		    <td class="firstcol" height="25" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Exterior Sheet Metal</td>
                <td height="25" width="178">
                  <p align="left"><input type="text" name="tSheetMetal" value="<%=Request("tSheetMetal")%>"/></td>
                  <td class="firstcol" height="21" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Vacuator Valve-Operation and Condition</td>
                <td height="21" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tVacuatorValve" value="<%Request("tVacuatorValve")%>"/><font size="1">O,R,X</font></td>
 
		  
		  
		  
		  </tr>
		 <tr>	
		    <td class="firstcol" height="25" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Grill and Radiator</td>
                <td height="25" width="178">
                  <p align="left"><input type="text" name="tGrillRadiator" value="<%Request("tGrillRadiator")%>"/></td>
                  <td class="firstcol" height="25" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Mounting Bolts</td>
                <td height="25" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tMountingBolts" value="<%Request("tMountingBolts")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="25" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Trailer Light Cord and Connectors</td>
                <td height="25" width="178">
                  <p align="left"><input type="text" name="tTrailerCordConnectors" value="<%Request("tTrailerCordConnectors")%>"/></td>
                  <td class="firstcol" height="25" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Leaks</td>
                <td height="25" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tLeaks" value="<%Request("tLeaks")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
 
		 <tr>	
		    <td class="firstcol" height="25" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Air Lines and Gladhands</td>
                <td height="25" width="178">
                  <p align="left"><input type="text" name="tAirLinesGladhands" value="<%Request("tAirLinesGladhands")%>"/></td>
                  
                  <td class="firstcol" height="25" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Interference</td>
                <td height="25" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tInterference" value="<%Request("tInterference")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="25" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              5th Wheel Mntng & Condition/Check ADJ</td>
                <td height="25" width="178">
                  
                  <input type="text" name="t5thWheel" value="<%Request("t5thWheel")%>"/></td>
                  
                  <td class="firstcol" height="25" width="420" style="border-left-style: solid">Engine
                    Oil Level</td>
                <td height="25" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tEngineOilLevel" value="<%Request("tEngineOilLevel")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="25" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
              Pental - Hook/Eye
              Condition</td>
                <td height="25" width="178">
                  <p align="left"><input type="text" name="tHookEye" value="<%Request("tHookEye")%>"/></td>
                  
                  <td class="firstcol" height="25" width="420" style="border-left-style: solid">Power
                    Steering</td>
                <td height="25" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tPowerSteering" value="<%Request("tPowerSteering")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
 
		 <tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Headlights - High & Low Beams</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tHeadlights" value="<%Request("tHeadlights")%>"/><font size="1">O,R,X</font></td>
                  
                  <td class="firstcol" height="25" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Reservoir Level</td>
                <td height="25" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tReservoirLevel" value="<%Request("tReservoirLevel")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Road Lights</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tRoadLights" value="<%Request("tRoadLights")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Fluid Condition/Leaks</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tFluidCondition" value="<%Request("tFluidCondition")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Clearance Lights</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tClearanceLights" value="<%Request("tClearanceLights")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Replace P/S Filter &amp; Fluid every 50,000 miles</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tFSFilter" value="<%Request("tFSFilter")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Turn Signals</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tTurnSignals" value="<%Request("tTurnSignals")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Drive
                    Belt Condition and Adjustment</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tDriveBelt" value="<%Request("tDriveBelt")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Emergency Flasher</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tEmergencyFlasher" value="<%Request("tEmergencyFlasher")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">A/C
                    Compressor/Condenser Mounts/Leaks</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tACCompressor" value="<%Request("tACCompressor")%>"/><font size="1">O,R,X</font></td>
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="23" width="469" style="border-left-style: solid">Brake Lights</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tBrakeLights" value="<%Request("tBrakeLights")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Cold
                    Start Aids (Sept - Feb)</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tColdStart" value="<%Request("tColdStart")%>"/><font size="1">O,R,X</font></td>
 
                <td height="23" width="146" style="border-right-style: solid">
                  <p align="left">
 
		  </tr>
		 <tr>	
		    <td class="firstcol" height="19" width="469" style="border-left-style: solid">Backup/Loading Lights</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tBackupLights" value="<%Request("tBackupLights")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid"><font size="1">High
                    Idle:<input type="text" name="tHighIdle" value="<%Request("tHighIdle")%>" size="8"/>RPM&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Low Idle: <input type="text" name="tLowIdle" value="<%Request("tLowIdle")%>" size="8"/>RPM</font></td>
            <td width="131" height="23">
 
		  </tr>
		 <tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Engine Oil-Analysis</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tEngineOilAnalysis" value="<%Request("tEngineOilAnalysis")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Drain
                    Water from Fuel System</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tDrainWater" value="<%Request("tDrainWater")%>"/><font size="1">O,R,X</font></td>
 
		</tr>
		<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Engine Oil-Change</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tEngineOilChange" value="<%Request("tEngineOilChange")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Signs
                    of Over-Charging</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tOverCharging" value="<%Request("tOverCharging")%>"/><font size="1">O,R,X</font></td>
 
		 </tr>
		<tr>
 
		 <td class="firstcol" height="19" width="469" style="border-left-style: solid">Oil Filters-Replace</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tOilFilters" value="<%Request("tOilFilters")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Remove
                    Corrosion &amp; Seal Terminals</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tRemoveCorrosion" value="<%Request("tRemoveCorrosion")%>"/><font size="1">O,R,X</font></td>
	 
       </tr>
		<tr>
           
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">Record ECM Status History</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tECMStatus" value="<%Request("tECMStatus")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Hold-Down
                    &amp; Box-Mounting Bolts</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tBoxMountingBolts" value="<%Request("tBoxMountingBolts")%>"/><font size="1">O,R,X</font></td>
	 
	 
		
		
		
		</tr>
		<tr>
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">Down Fault Code History, Clear Inactive, Report Active Codes</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tCodes" value="<%Request("tCodes")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Sealed Type-Condition</td>
                <td height="19" width="129" style="border-right-style: solid">
                 </td>
 
		
		
		
		</tr>
		<tr>
		<td class="firstcol" height="23" width="469" style="border-left-style: solid">Fuel Filter - Replace</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tFuelFilter" value="<%Request("tFuelFilter")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid">Test
                    Load
                    <font size="1"><input type="text" name="tTestLoad1" value="<%Request("tTestLoad1")%>" size="8"/>1&nbsp;<input type="text" name="tTestLoad2" value="<%Request("tTestLoad2")%>" size="8"/>2&nbsp;<input type="text" name="tTestLoad3" value="<%Request("tTestLoad3")%>" size="8"/>3&nbsp;<input type="text" name="tTestLoad4" value="<%Request("tTestLoad4")%>" size="8"/>4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    </font></td>
                <td height="23" width="129" style="border-right-style: solid">
                  </td>
	 
		
		
		
		</tr>
<tr>
           
		<td class="firstcol" height="21" width="469" style="border-left-style: solid">Cranking System:</td>
                <td height="21" width="178">
                  <p align="left">
                  <td bgcolor="#C0C0C0" class="firstcol" height="21" width="420" style="border-left-style: solid">TIRES
                    AND WHEELS</td>
                <td bgcolor="#C0C0C0" height="21" width="129" style="border-right-style: solid">
                  &nbsp;
                  </td>
	 
		</tr>
<tr>
           
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Visual Inspection/Loose Connections</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tCrankInspection" value="<%Request("tCrankInspectiond")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Missing
                    Valve Caps/Tighten Stem Locks</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tMissingValveCaps" value="<%Request("tMissingValveCaps")%>"/><font size="1">O,R,X</font></td>
	 
		</tr>
		<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Cab, Chassis Grounds</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tCrankChassisGround" value="<%Request("tCrankChassisGround")%>"/><font size="1">O,R,X</font></td>
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Cracks
                    or Loose Wheel Lugs</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tCracks" value="<%Request("tCracks")%>"/><font size="1">O,R,X</font></td>
		</tr>
		<tr>
		  <td class="firstcol" height="21" width="469" style="border-left-style: solid">Charging System:</td>
                <td height="21" width="178">
                  <p align="left">
                  <td class="firstcol" height="21" width="420" style="border-left-style: solid">Tandem
                    Mating</td><td height="21" width="131"><input type="text" name="tTandemMating" value="<%Request("tTandemMating")%>"/><font size="1">O,R,X</font></td>
   
		</tr>
		<tr>
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Visual Inspection/Loose Connections</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tChargingInspection" value="<%Request("tChargingInspection")%>"/><font size="1">O,R,X</font></td>
             <td class="firstcol" height="19" width="420" style="border-left-style: solid">Irregular
              Wear</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tIrregularWear" value="<%Request("tIrregularWear")%>"/><font size="1">O,R,X</font></td>
 
		</tr>
 
	<tr>		
				<td class="firstcol" height="23" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                  Output Voltage<font size="1"><input type="text" name="tChargingVoltage" value="<%Request("tChargingVoltage")%>" size="11"/>volts&nbsp;
                  <input type="text" name="tChargingAmps" value="<%Request("tChargingAmps")%>" size="9"/>amps</font></td size="20">
                  <td height="23"></td>
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid">
                    Tire Pressure (Record Below) Actual Found</td><td height="23" width="131" style="border-right-style: solid"><input type="text" name="tTirePressure" value="<%Request("tTirePressure")%>"/><font size="1">O,R,X</font></td>
   
		  </tr>
	<tr>
		<td class="firstcol" height="23" width="469" style="border-left-style: solid" bgcolor="#C0C0C0">UNDER VEHICLE</td>
                <td height="23" width="178" bgcolor="#C0C0C0">
                  </td>
                  <td class="firstcol" height="23" width="424" style="border-left-style: solid; border-bottom-style: solid">&nbsp;Remaining
                    Tread (Record Below)<font size="1">&nbsp;&nbsp;&nbsp;&nbsp;
                    </font></td>
                <td height="23" width="133" style="border-right-style: solid; border-bottom-style: solid"></td>
 
		
		
		
		</tr>
 
<tr>
		<td class="firstcol" height="21" width="469" style="border-left-style: solid">Steering Components - Condition:</td>
                <td height="21" width="178">
                  <p align="left"></td>
                  <td class="firstcol" height="21" width="420" style="border-left-style: solid"></td>
                <td height="21" width="129" style="border-right-style: solid">
 
		
		
		
		</tr>
<tr>
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Steering Gear</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tSteeringGear" value="<%Request("tSteeringGear")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">
                    <p style="border-left-style: solid"></td>
   
		</tr>
<tr>
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Steering Shaft Splines and Joint(s)</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tSteeringShaft" value="<%Request("tSteeringShaft")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    TIRES AND WHEELS INSPECTION</td>
   
		</tr>
<tr>
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Pitman Arm</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tPitmanArm" value="<%Request("tPitmanArm")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    (Initial Air Pressure/Tread Depth)</td>
   
		</tr>
<tr>
		<td class="firstcol" height="23" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Drag Link</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tDragLink" value="<%Request("tDragLink")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Right&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    <font size="1"><input type="text" </td size="12" name="tRight2" value="<%Request("tRight2")%>"/>&nbsp;&nbsp;
                    <input type="text" </td size="12" name="tRight4" value="<%Request("tRight4")%>"/>&nbsp;
                    PSI-KPA</font></td>
   
		</tr>
<tr>
		<td class="firstcol" height="23" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Steering Arms</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tSteeringArms" value="<%Request("tSteeringArms")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="1"><input type="text" </td size="12" name="tRight1" value="<%Request("tRight1")%>"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    32nd/mm
                    </font></td>
   
		</tr>
<tr>
		<td class="firstcol" height="23" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Tie Rod Arms</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tTieRodArms" value="<%Request("tTieRodArms")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font size="1"><input type="text" </td size="12" name="tRight3" value="<%Request("tRight3")%>"/>&nbsp;&nbsp;
                    <input type="text" </td size="12" name="tRight5" value="<%Request("tRight5")%>"/>&nbsp; </font></td>
   
		</tr>
<tr>
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Tie Rod Ends</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tTieRodEnds" value="<%Request("tTieRodEnds")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        </td>
   
		</tr>
<tr>
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          Radius Rods/Torgue Arms</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tRadiusRodTorqueArms" value="<%Request("tRadiusRodTorqueArms")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        </td>
   
		</tr>
<tr>
		<td class="firstcol" height="23" width="469" style="border-left-style: solid">Chassis
          Frames - Cracks or Breaks</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tChassisFrames" value="<%Request("tChassisFrames")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    Left&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    <font size="1"><input type="text" </td size="12" name="tLeft2" value="<%Request("tLeft2")%>"/>&nbsp;&nbsp;
                    <input type="text" </td size="12" name="tLeft4" value="<%Request("tLeft4")%>"/></font>
        </td>
   
		</tr>
<tr>
		<td class="firstcol" height="23" width="469" style="border-left-style: solid">Inspect
          Exhaust System</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tExhaustSystem" value="<%Request("tExhaustSystem")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="1"><input type="text" </td size="12" name="tLeft1" value="<%Request("tLeft1")%>"/> </font>
                    &nbsp;
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
   
		</tr>
<tr>
		<td class="firstcol" height="23" width="469" style="border-left-style: solid">Spring
          Shackles and Hanger Brackets</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tSpringShackles" value="<%Request("tSpringShackles")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    <font size="1">&nbsp;&nbsp;
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    <input type="text" </td size="12" name="tLeft3" value="<%Request("tLeft3")%>"/>&nbsp;&nbsp;&nbsp;
                    <input type="text" </td size="12" name="tLeft5" value="<%Request("tLeft5")%>"/></font></td>
   
		</tr>
		<tr>
		<td class="firstcol" height="19" width="469" style="border-left-style: solid">King
          Pin Wear</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tKingPin" value="<%Request("tKingPin")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    <font size="1">&nbsp;&nbsp; &nbsp; </font></td>
   
		</tr>
 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Wheel
                  Bearing Adjustment</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tWheelBearing" value="<%Request("tWheelBearing")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid">
                <p align="center">&nbsp;</p>
                </td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left">
 
		  </tr>
 <tr>		
				<td class="firstcol" height="19" width="469" style="border-left-style: solid">Front
                  Hub Lubricant Level/Leaks</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tFrontHub" value="<%Request("tFrontHub")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="19" width="420" style="border-left-style: solid"><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                Tire Air Specs:&nbsp;&nbsp;&nbsp;&nbsp; Steer - 100PSI&nbsp;&nbsp;&nbsp;&nbsp;
                Drive - 95PSI&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Trailer -95PSI</font>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left">
 
		  </tr>
<tr>		
				<td class="firstcol" height="23" width="469" style="border-left-style: solid">Spring
                  Leaves/Shocks and Rubbers</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tSpringLeaves" value="<%Request("tSpringLeaves")%>"/><font size="1">O,R,X</font></td>
              <td class="firstcol" height="23" width="420" style="border-left-style: solid">Air
                Pressure Adjusted to:<input type="text" name="tAirPressure" value="<%Request("tAirPressure")%>"/></td size="32" name="117">
                <td height="23" width="129" style="border-right-style: solid">
                  <p align="left">
 
		  </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">U-Bolt
            Torque/Front &amp; Rear, Air Bag Height</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tUBoltTorque" value="<%Request("tUBoltTorque")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid" bgcolor="#C0C0C0">ROAD
                    TEST</td>
                <td height="19" width="129" style="border-right-style: solid" bgcolor="#C0C0C0">
                  <p align="left">&nbsp;
		 </tr>
<tr>
		  <td class="firstcol" height="21" width="469" style="border-left-style: solid">Leaks:</td>
                <td height="21" width="178">
                  <p align="left">
                  <td class="firstcol" height="21" width="420" style="border-left-style: solid">Steering/Steering
                    Free Play</td>
                <td height="21" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tSteeringFreePlay" value="<%Request("tSteeringFreePlay")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Coolant</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tCoolantLeak" value="<%Request("tCoolantLeak")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Shifting</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tShifting" value="<%Request("tShifting")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Engine Oil</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tEngineOilLeak" value="<%Request("tEngineOilLeak")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Brakes</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tBrakes" value="<%Request("tBrakes")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Power Steering</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tPowerSteeringLeak" value="<%Request("tPowerSteeringLeak")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Engine
                    Operation (Noise, Surging, Black Smoke)</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tEngineOperation" value="<%Request("tEngineOperation")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Fuel Tank</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tFuelTankLeak" value="<%Request("tFuelTankLeak")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Jake
                    Brake Operation</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tJakeBrake" value="<%Request("tJakeBrake")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Fuel Lines</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tFuelLineLeak" value="<%Request("tFuelLineLeak")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Seat
                    Belts/Sleeper Restraints</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tSeatBelts" value="<%Request("tSeatBelts")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Transmission</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tTransmissionLeak" value="<%Request("tTransmissionLeak")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Air
                    Seat Operation</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tAirSeatOperation" value="<%Request("tAirSeatOperation")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Axles</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tAxlesLeak" value="<%Request("tAxlesLeak")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Cab
                    Heater/Sleeper Heater</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tHeaters" value="<%Request("tHeaters")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            Inner and Outer Hub Seals</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tInnerOuterSealsLeak" value="<%Request("tInnerOuterSealsLeak")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Air
                    Conditioner/Sleeper Air Conditioner</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tAirConditioner" value="<%Request("tAirConditioner")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Engine
            and Transmission Mounts</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tEngineTrannyMounts" value="<%Request("tEngineTrannyMounts")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Check
                    Filter Finder (After Road Test)</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tFilterFinder" value="<%Request("tFilterFinder")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Transmission
            Lubricant Level</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tTrannyLubeLevel" value="<%Request("tTrannyLubeLevel")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid" bgcolor="#C0C0C0">BODY</td>
                <td height="19" width="129" style="border-right-style: solid" bgcolor="#C0C0C0">
                  <p align="left">&nbsp;
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Drivelines
            - U-joints and Slip Yokes</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tDrivelines" value="<%Request("tDrivelines")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Interior
                    Liner Damage</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tInteriorLiner" value="<%Request("tInteriorLiner")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Rear
            Axle Lubricant Level</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tRAxleLubeLevel" value="<%Request("tRAxleLubeLevel")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Door
                    Operation</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tDoorOperation" value="<%Request("tDoorOperation")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Rear
            Axle Breathers - Clear, Damaged</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tRAxleBreathers" value="<%Request("tRAxleBreathers")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Roll-Up
                    Door Tracks - Lubricate</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tRollupDoor" value="<%Request("tRollupDoor")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Brake
            Hoses for Cracks and Chafing</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tBrakeHoses" value="<%Request("tBrakeHoses")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid">Lift
                    Gate Operation</td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left"><input type="text" name="tLiftGate" value="<%Request("tLiftGate")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="23" width="469" style="border-left-style: solid">Adjust
            Brakes - Check Auto Slacks</td>
                <td height="23" width="178">
                  <p align="left"><input type="text" name="tAdjustBrakes" value="<%Request("tAdjustBrakes")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="23" width="424" style="border-bottom-style: solid">
                    <p style="border-left-style: solid">Check
                    Body Mount Bolts</p>
          </td>
                <td height="23" width="133" style="border-bottom-style: solid">
                  <p align="left" style="border-right-style: solid"><input type="text" name="tBodyMountBolts" value="<%Request("tBodyMountBolts")%>"/><font size="1">O,R,X</font></td>
		 </tr>
<tr>
		  <td class="firstcol" height="19" width="469" style="border-left-style: solid">Brakes:
            Lining Remaining - Replace at 1/4</td>
                <td height="19" width="178">
                  <p align="left"><input type="text" name="tBrakesLining" value="<%Request("tBrakesLining")%>"/><font size="1">O,R,X</font></td size="20" name="11">
                  <td class="firstcol" height="19" width="420" style="border-left-style: solid"><input type="text" name="tInspectionSticker" value="<%Request("tInspectionSticker")%>"/>(<font size="1">X)
                    </font><font size="2">Attach
                    the Appropriate Inspection Sticker to the Windshield</font></td>
                <td height="19" width="129" style="border-right-style: solid">
                  <p align="left">
		 </tr>
<tr>
		  <td class="firstcol" height="31" width="469" style="border-left-style: solid"><font size="1">&nbsp;&nbsp;&nbsp;
            RF</font><font size="1"><input type="text" name="tRF" value="<%Request("tRF")%>" size="8"/>
            RRF<input type="text" name="tRRF" value="<%Request("tRRF")%>" size="9"/>
            RRR<input type="text" name="tRRR" value="<%Request("tRRR")%>" size="9"/>(inches/mm)</font></td size="11" name="122">
                <td height="31" width="178">
                 
                  <td class="firstcol" height="31" width="420" style="border-left-style: solid"><input type="text" name="tInspectionCompleted" value="<%Request("tInspectionCompleted")%>"/>(x)<font size="2">This
                    Inspection has been Completed and Complies with&nbsp; <font color="#FFFFFF">(49CFR</font>
                    <font color="#FFFFFF">396.17-23) </font>(49CFR 396.17-23)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font></td>
                <td height="31" width="129" style="border-right-style: solid">
                  <p align="left">
		 </tr>
<tr>
		  <td class="firstcol" height="23" width="469" style="border-left-style: solid"><font size="1">&nbsp;&nbsp;&nbsp;
            LF</font><font size="1"><input type="text" name="tLF" value="<%Request("tLF")%>" size="9"/>LRF<input type="text" name="tLRF" value="<%Request("tLRF")%>" size="9"/>LRR<input type="text" name="tLRR" value="<%Request("tLRR")%>" size="9"/>(inches/mm)</font>
                <td height="23" width="178">
                 
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid"><font size="2">VIN
                    # (Last 6) </font><font size="1"><input type="text" name="tLast6" value="<%Request("tLast6")%>"/></font></td size="33" name="124">
                    <font size="2">
                    <td>&nbsp;&nbsp;&nbsp; </font>
                <td height="23" width="129" style="border-right-style: solid">
                  <p align="left">
		 </tr>
<tr>
		  <td class="firstcol" height="23" width="469" style="border-left-style: solid">&nbsp;Chassis
            Lubrication/5th Wheel/Drive Line&nbsp;
                <td height="23" width="178">
                 
                  <input type="text" name="tChassisLube" value="<%Request("tChassisLube")%>"/><font size="1">O,R,X</font></td name="126">
                 
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid"><font size="2">&nbsp;APPROVED
                    BY &nbsp;&nbsp;</font><font size="1"><input type="text" name="tApprovedBy" value="<%Request("tApprovedBy")%>"</td size="33" name="125"></font><font size="2">&nbsp;&nbsp;&nbsp;</font><font size="2">&nbsp;</font><font size="2">&nbsp;&nbsp;&nbsp;</font></td>
                <td height="23" width="129" style="border-right-style: solid">
                  <p align="left">
		 </tr>
<tr>
		  <td class="firstcol" height="23" width="469" style="border-left-style: solid">&nbsp;
                <td height="23" width="178">
                 
                  <td class="firstcol" height="23" width="420" style="border-left-style: solid"></td>
                <td height="23" width="129" style="border-right-style: solid">
                  <p align="left">
		 </tr>
</table>
 
 
      <table>
 
 
 <tr>
           <td style="text-align: center" width="1155" height="62">
               <p align="left"><font color="#FF0000">*</font><b><font color="#FF0000" size="2">&nbsp;</font></b><font size="1">&nbsp;</font><font size="3">Inspected By </font><font size="1"><input type="text" </td size="43" name="tInspectedBy" value="<%Request("tInspectedBy")%>"/></font><font size="1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
               </font><font size="3">Branch</font><font size="1"> </font><font size="1"><input type="text" </td size="36" name="tBranch" value="<%Request("tBranch")%>"/></font>
               <p align="left">Please indicate any detected defects: (255
               character limit)</p>
               <p align="left"><font size="1"><input type="text" </td size="160" name="tDetectedDefects" align="left" value="<%Request("tDetectedDefects")%>"/></font></p>
               <p><input type="submit" value="Submit" name="btnSubmit" />
               <input type="submit" value="Print" onclick="window.print()">
        
 
</td></tr>
 
 
</table>
 
      
      
 
 
 
     
         
 </form>
   
      
 
<%
  Else
  	rstUsers.Close
  	
	sSQL = "SELECT * FROM tblHDInspection WHERE UnitNo='" & Request("tUnitNo") & "'"
	rstUsers.Open SSQL
	 
   response.write "<p>Your entry has been added to the database.  Thanks for playing.</p>"
  
 End If
%>
 
 
        
 
     
 
 
</BODY>
 
<% 
   
   rstUsers.Close
%>
[+][-]11/05/09 01:37 AM, ID: 25747869Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Active Server Pages (ASP)
Tags: asp, Access 2003
Sign Up Now!
Solution Provided By: gawai
Participating Experts: 2
Solution Grade: A
 
[+][-]11/05/09 04:59 AM, ID: 25748923Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/05/09 09:01 AM, ID: 25751542Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625