Question : Jquery

Hi Experts,
I am new to Jquery. All my divs should be minimized during page load. When i click checkbox near respective location,it has to show building radio buttons, text boxes, drop downs, etc... Advance thanks.

Kind Regards,
Pooja
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:
<%@ Page Title="Coverages" Language="C#" MasterPageFile="~/PennPlus.master" AutoEventWireup="true" creFile="Coverages.aspx.cs" Inherits="Quotes_BldgCoverages" %>



    
    <script src="<%= ResolveUrl("~/Lib/jquery-1.4.2.min.js") %>" lkj="text/javascript"></script>
    <script language="javascript" lkj="text/javascript">
        $(document).ready(function () {
            $("#<%= rbBNDG.ClientID %> input").click(function () {

                $("#<%= TextBox1.ClientID %>").val($(this).val());


            });

            $("#<%= rbBNDG2.ClientID %> input").click(function () {

                $("#<%= TextBox5.ClientID %>").val($(this).val());


            });

            $("#<%= rbBNDG3.ClientID %> input").click(function () {

                $("#<%= TextBox14.ClientID %>").val($(this).val());


            });

            $("#<%= rbBNDG4.ClientID %> input").click(function () {

                $("#<%= TextBox22.ClientID %>").val($(this).val());


            });

        });
    </script>

        
    <script language="javascript" lkj="text/javascript">
        function cbLocation1() {
            debugger;
            if ($("[name$=cbLoc1]").is(':checked')) {
                 debugger;
                 $("#divLoc1").show();
                 
                $("#divLoc2").hide();
                $("#divLoc3").hide();
                $("#divLoc4").hide();
             } else 
             {
                 // $("#divLoc1").hide();
                 $("#divLoc2").show();
                 $("#divLoc3").show();
                 $("#divLoc4").show();
              }
              }

              function cbLocation2() {
                  debugger;
                  if ($("[name$=cbLoc2]").is(':checked')) {
                      debugger;
                      $("#divLoc2").show();
                      $("#divLoc1").hide();
                      $("#divLoc3").hide();
                      $("#divLoc4").hide();
                  } else {
                      //$("#divLoc2").hide();
                      $("#divLoc1").show();
                      $("#divLoc3").show();
                      $("#divLoc4").show();
                  }
              }

              function cbLocation3() {
                  debugger;
                  if ($("[name$=cbLoc3]").is(':checked')) {
                      debugger;
                      $("#divLoc3").show();
                      $("#divLoc2").hide();
                      $("#divLoc4").hide();
                      $("#divLoc1").hide();
                  } else {
                      //$("#divLoc3").hide();
                      $("#divLoc1").show();
                      $("#divLoc2").show();
                      $("#divLoc4").show();
                    
                  }
              }

              function cbLocation4() {
                  debugger;
                  if ($("[name$=cbLoc4]").is(':checked')) {
                      debugger;
                      $("#divLoc4").show();
                      $("#divLoc2").hide();
                      $("#divLoc3").hide();
                      $("#divLoc1").hide();
                  } else {
                      // $("#divLoc4").hide();
                      $("#divLoc1").show();
                      $("#divLoc2").show();
                      $("#divLoc3").show();
                  }
              }
    </script>


    <table border="0" cellpadding="0" cellspacing="0" width="100%">
        <tr>
            <td align="center">
                <table cellpadding="0" cellspacing="0" width="96%">
                    <tr>
                        <td style="width: 100%">
                            <asp:UpdatePanel runat="server" ID="UpdatePanel1">
                                <ContentTemplate>
                                    <table width="100%" cellpadding="0" cellspacing="0">
                                        <tr>
                                            <td colspan="3">
                                                <uc1:QuotesTabControl ID="QuotesTabControl1" runat="server" />
                                            </td>
                                        </tr>
                                        <tr>
                                            <td colspan="3">
                                                <asp:ValidationSummary ID="vSummary" runat="server" DisplayMode="List" />
                                            </td>
                                        </tr>


                                        
                                                   <tr runat="server" id="trEntryFields">
                                            <td>
                                                <asp:HiddenField ID="hfBranchNumber" runat="server" />
                                                <div id = "divLoc1">
                                                <table width="100%" cellpadding="0" cellspacing="1">
                                                    <tr>
                                                        <td scr="tableHeader" colspan="3">
                                                        <input lkj="checkbox"  id= "cbLoc1" runat="server"   onclick  ="cbLocation1();"/><label style ="visibility :hidden ;">123</label>Location 1&nbsp;<label style ="visibility :hidden ; border :0">1234567222222810</label>(5 
                                                            </td>
                                                    </tr>

                                                    <tr><td style="width: 12% ; background-color :CBBEB5"  ><panel><asp:RadioButtonList ID="rbBNDG" runat="server" RepeatDirection = "Vertical"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="BNDG-1">&lt;b&gt;BNDG 1&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-2">&lt;b&gt;BNDG 2&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-3">&lt;b&gt;BNDG 3&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-4">&lt;b&gt;BNDG 4&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList></panel>
                                                                        <div  style ="height: 10%"></div> <label style="height =125px;  visibility :hidden ; border :0px">a</label>  <asp:ImageButton ID="ImageButton1" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>
                                                                        
                                                        <td valign="top" align="left" style="width:100%">
                                                            <table width="100%" cellpadding="0" cellspacing="1" border="0">
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;BNDG Description</td>
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox1" Font-Bold="false">*</asp:RequiredFieldValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:TextBox ID="TextBox1" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    <td style="width:1%"></td>
                                                                    <td   scr="labelText"  style="width:11%">BNDG fdxfa</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                    <td scr="controlBGround" style="width: 15%"><asp:TextBox ID="TextBox3" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    
                                                                </tr>

                                                                 <tr>
                                                                    <td scr="labelText" style="width: 12%"><table width="100%" cellpadding="0" cellspacing="0"><tr><td scr="labelText">&nbsp;&nbsp;&nbsp;scr cre</td><td align="right"><span id="Span1" runat="server" style="text-align:right; font-weight:normal;"></span></td></tr></table></td>
                                                                    <td style="width:1%"><asp:CustomValidator runat="server"
                                                                    ID="CustomValidator1" ControlToValidate="txtVIN" ErrorMessage="Enter a VIN that's at least ten characters" ClientValidationFunction="ValidateVIN" ValidateEmptyText="true" Cssscr="validatorStyle">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0">
                                                                            <tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox2" runat="server" width="100%" Cssscr="Required" MaxLength="17"></asp:TextBox></td>
                                                                                <td align="left" valign="bottom"><img alt="" id="img1" runat="server" src="~/Images/Buttons/btn_elipse.jpg" style="cursor:pointer" />
                                                                                </td></tr></table>
                                                                    </td>  
                                                                    
                                                                    
                                                                     <td style="width:1%"></td>
                                                                    <td  scr="labelText" style="width:11%">eam2</td>
                                                                    
                                                                    <td style="width:1%"></td> <td scr="controlBGround" style="width: 10%">
                                                                        <asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="Yes">&lt;b&gt;Yes&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="No">&lt;b&gt;No&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                      </td>
                                                                       
                                                                    
                                                                                                             
                                                                </tr>
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%"><table width="100%" cellpadding="0" cellspacing="0"><tr><td scr="labelText">&nbsp;&nbsp;&nbsp;scr Description</td><td align="right"><span id="lblVinCharCount" runat="server" style="text-align:right; font-weight:normal;"></span></td></tr></table></td>
                                                                    <td style="width:1%"><asp:CustomValidator runat="server"
                                                                    ID="cvVIN" ControlToValidate="txtVIN" ErrorMessage="Enter a VIN that's at least ten characters" ClientValidationFunction="ValidateVIN" ValidateEmptyText="true" Cssscr="validatorStyle">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0">
                                                                            <tr valign="top"><td style="width:90%"><asp:TextBox ID="txtVIN" runat="server" width="100%" Cssscr="Required" MaxLength="17"></asp:TextBox></td>
                                                                                <td align="left" valign="bottom"><img alt="" id="imgVIN" runat="server" src="~/Images/Buttons/btn_elipse.jpg" style="cursor:pointer" />
                                                                                </td></tr></table>
                                                                    </td>   
                                                                    
                                                                    
                                                                     <td style="width:1%"></td>
                                                                    <td   scr="labelText"  style="width:11%">BNDG jkjfydf</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                   
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList2" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>
                                                                    
                                                                    
                                                                                                            
                                                                </tr>
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;freider</td>
                                                                    <td style="width:1%"></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="ddlfreider" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>

                                                                          <td style="width:1%"></td>
                                                                    <td scr="labelText" style="width:11%">drelk speed<img alt="" id="img2" runat="server" src="~/Images/Extra/question_mark.gif" style="cursor:pointer" /></td>
                                                                 
                                                                    <td style="width:1%">
                                                                        &nbsp;<asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator>
                                                                        &nbsp;</td>                                      
                                                                   
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList3" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value="">4%</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>


                                                                </tr>    
                                                                <tr>
                                                                        <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;dere dres</td>
                                                                         <td style="width:1%"><asp:RequiredFieldValidator ID="rvMake" runat="server" ErrorMessage="Enter the vehicle Make." Cssscr="validatorStyle" ControlToValidate="txtMake" Font-Bold="false">*</asp:RequiredFieldValidator></td>
                                                                        <td scr="controlBGround" style ="width:15%"><asp:TextBox ID="txtMake" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                            </asp:TextBox><asp:DropDownList ID="ddlMake" runat="server" Style="width: 100%; display:none;" Cssscr="Required">                                      
                                                                                </asp:DropDownList></td>


                                                                                 <td style="width:1%"></td>
                                                                    <td   scr="labelText" style="width:11%" >jhjgh ljliu fdxfa</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator6" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                    <td scr="controlBGround" style="width: 15%"><asp:TextBox ID="TextBox8" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    



                                                                </tr>

                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;wrte lkj</td>
                                                                    <td style="width:1%"></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList1" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>

                                                                          <td style="width:1%"></td>
                                                                    <td  scr="labelText"  style="width:11%">Include ion kjhklhj</td>
                                                                    
                                                                 
                                                                    <td style="width:1%"></td> <td scr="controlBGround" style="width: 10%">
                                                                        <asp:RadioButtonList ID="RadioButtonList2" runat="server" RepeatDirection="Horizontal"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="Yes">&lt;b&gt;Yes&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="No">&lt;b&gt;No&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                      </td>
                                                                </tr>   

                                                                
                                                                <tr id="trSymbol" runat="server">                                
                                                                     <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;hgf BNDG lkj</td>
                                                                    <td style="width:1%"><asp:CustomValidator ID="cvSymbol" runat="server" ErrorMessage="Enter the Symbol for the vehicle." Cssscr="validatorStyle" ControlToValidate="TextBox4" Font-Bold="false" Enabled="false" ClientValidationFunction="ValidateSymbol" ValidateEmptyText="true">*</asp:CustomValidator></td>
                                                                    
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0"><tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox4" runat="server" Style="width: 100%;" Cssscr="Required" onKeyPress="javascript:return validateNonNumber(event);"></asp:TextBox></td>
                                                                            <td align="left" valign="bottom"></td>
                                                                            </tr></table>
                                                                    </td>
                                                                  
                                                                    <td style="width:1%"></td>
                                                                    <td  colspan ="3" scr="labelText"  style="width:25%" >lkluj kjhklhj (select all that apply) </td>
                                                                 
                                                                </tr> 
                                                                <tr id="trCompSymbol" runat="server">                                
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;Year Built</td>
                                                                    <td style="width:1%"><asp:CustomValidator ID="cvCompSymbol" runat="server" ErrorMessage="Enter the Comprehensive Symbol for the vehicle." Cssscr="validatorStyle" ControlToValidate="txtCompSymbol" Font-Bold="false" Enabled="false" ClientValidationFunction="ValidateSymbol" ValidateEmptyText="true">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0"><tr valign="top"><td style="width:90%"><asp:TextBox ID="txtCompSymbol" runat="server" Style="width: 100%;" Cssscr="Required" onKeyPress="javascript:return validateNonNumber(event);"></asp:TextBox></td>
                                                                            <td align="left" valign="bottom"></td>
                                                                            </tr></table>
                                                                    </td>
                                                                
                                                                 <td style="width:1%"></td>
                                                                   
                                                                        
                                                                        <td><asp:CheckBox ID="CheckBox1" runat="server" Text="Central Fire Alarm" Enabled="false" /></td>
                                                                         <td colspan ="2"><asp:CheckBox ID="CheckBox2" runat="server" Text="Cooking Extinguishing System" Enabled="false" /></td>
                                                            
                                                                </tr> 
                                 
                                                                <tr><td colspan ="4" ></td>  <td><asp:CheckBox ID="CheckBox3" runat="server" Text="Central Burglar Alarm" Enabled="false" /></td>
                                                                    <td colspan ="2"> <asp:CheckBox ID="CheckBox4" runat="server" Text="Sprinkler" Enabled="false" /></td></tr>
                                                                <tr> <td colspan ="4" > <asp:ImageButton ID="btn_AddLocation1" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>
                                                                     <td colspan ="2" > <asp:ImageButton ID="ImageButton2" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>   
                                                                      <td> <asp:ImageButton ID="ImageButton3" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>                        </tr>
                                                            </table> 
                                                        </td>
                                                        
                                                        
                                                    </tr>
                                                     
                                                   
                                                </table> 
                                                </div>

                                                <div id="divLoc2">
                                                <table width="100%" cellpadding="0" cellspacing="1">
                                                    <tr>
                                                        <td scr="tableHeader" colspan="3">
                                                            <input lkj="checkbox"  id= "cbLoc2" runat="server"   onclick  ="cbLocation2();"/><label style ="visibility :hidden ;">123</label>Location 2&nbsp;<label style ="visibility :hidden ; border :0">1234567222222810</label>2 
                                                           </td>
                                                    </tr>

                                                    <tr><td style="width: 12% ; background-color :CBBEB5"  ><panel><asp:RadioButtonList ID="rbBNDG2" runat="server" RepeatDirection = "Vertical"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="BNDG-1">&lt;b&gt;BNDG 1&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-2">&lt;b&gt;BNDG 2&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-3">&lt;b&gt;BNDG 3&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-4">&lt;b&gt;BNDG 4&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList></panel>
                                                                        <div  style ="height: 10%"></div> <label style="height =125px;  visibility :hidden ; border :0px">a</label>  <asp:ImageButton ID="ImageButton4" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>
                                                                        
                                                        <td valign="top" align="left" style="width:100%">
                                                            <table width="100%" cellpadding="0" cellspacing="1" border="0">
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;BNDG Description</td>
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox1" Font-Bold="false">*</asp:RequiredFieldValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:TextBox ID="TextBox5" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    <td style="width:1%"></td>
                                                                    <td   scr="labelText"  style="width:11%">BNDG fdxfa</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator7" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                    <td scr="controlBGround" style="width: 15%"><asp:TextBox ID="TextBox6" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    
                                                                </tr>

                                                                 <tr>
                                                                    <td scr="labelText" style="width: 12%"><table width="100%" cellpadding="0" cellspacing="0"><tr><td scr="labelText">&nbsp;&nbsp;&nbsp;scr cre</td><td align="right"><span id="Span2" runat="server" style="text-align:right; font-weight:normal;"></span></td></tr></table></td>
                                                                    <td style="width:1%"><asp:CustomValidator runat="server"
                                                                    ID="CustomValidator2" ControlToValidate="txtVIN" ErrorMessage="Enter a VIN that's at least ten characters" ClientValidationFunction="ValidateVIN" ValidateEmptyText="true" Cssscr="validatorStyle">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0">
                                                                            <tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox7" runat="server" width="100%" Cssscr="Required" MaxLength="17"></asp:TextBox></td>
                                                                                <td align="left" valign="bottom"><img alt="" id="img30" runat="server" src="~/Images/Buttons/btn_elipse.jpg" style="cursor:pointer" />
                                                                                </td></tr></table>
                                                                    </td>  
                                                                    
                                                                    
                                                                     <td style="width:1%"></td>
                                                                    <td  scr="labelText" style="width:11%">eam2</td>
                                                                    
                                                                    <td style="width:1%"></td> <td scr="controlBGround" style="width: 10%">
                                                                        <asp:RadioButtonList ID="RadioButtonList3" runat="server" RepeatDirection="Horizontal"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="Yes">&lt;b&gt;Yes&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="No">&lt;b&gt;No&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                      </td>
                                                                       
                                                                    
                                                                                                             
                                                                </tr>
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%"><table width="100%" cellpadding="0" cellspacing="0"><tr><td scr="labelText">&nbsp;&nbsp;&nbsp;scr Description</td><td align="right"><span id="Span3" runat="server" style="text-align:right; font-weight:normal;"></span></td></tr></table></td>
                                                                    <td style="width:1%"><asp:CustomValidator runat="server"
                                                                    ID="CustomValidator3" ControlToValidate="txtVIN" ErrorMessage="Enter a VIN that's at least ten characters" ClientValidationFunction="ValidateVIN" ValidateEmptyText="true" Cssscr="validatorStyle">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0">
                                                                            <tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox9" runat="server" width="100%" Cssscr="Required" MaxLength="17"></asp:TextBox></td>
                                                                                <td align="left" valign="bottom"><img alt="" id="img4" runat="server" src="~/Images/Buttons/btn_elipse.jpg" style="cursor:pointer" />
                                                                                </td></tr></table>
                                                                    </td>   
                                                                    
                                                                    
                                                                     <td style="width:1%"></td>
                                                                    <td   scr="labelText"  style="width:11%">BNDG jkjfydf</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator8" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                  
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList4" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>
                                                                    
                                                                    
                                                                                                            
                                                                </tr>
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;freider</td>
                                                                    <td style="width:1%"></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList5" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>

                                                                          <td style="width:1%"></td>
                                                                    <td scr="labelText" style="width:11%">drelk speed<img alt="" id="img5" runat="server" src="~/Images/Extra/question_mark.gif" style="cursor:pointer" /></td>
                                                             
                                                                    <td style="width:1%">
                                                                        &nbsp;<asp:RequiredFieldValidator ID="RequiredFieldValidator9" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator>
                                                                        &nbsp;</td>                                      
                                                                   
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList6" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value="">4%</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>


                                                                </tr>    
                                                                <tr>
                                                                        <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;dere dres</td>
                                                                         <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator10" runat="server" ErrorMessage="Enter the vehicle Make." Cssscr="validatorStyle" ControlToValidate="txtMake" Font-Bold="false">*</asp:RequiredFieldValidator></td>
                                                                        <td scr="controlBGround" style ="width:15%"><asp:TextBox ID="TextBox10" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                            </asp:TextBox><asp:DropDownList ID="DropDownList7" runat="server" Style="width: 100%; display:none;" Cssscr="Required">                                      
                                                                                </asp:DropDownList></td>


                                                                                 <td style="width:1%"></td>
                                                                    <td   scr="labelText" style="width:11%" >jhjgh ljliu fdxfa</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator11" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                    <td scr="controlBGround" style="width: 15%"><asp:TextBox ID="TextBox11" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    



                                                                </tr>

                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;wrte lkj</td>
                                                                    <td style="width:1%"></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList8" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>

                                                                          <td style="width:1%"></td>
                                                                    <td  scr="labelText"  style="width:11%">Include ion kjhklhj</td>
                                                                    
                                                                  
                                                                    <td style="width:1%"></td> <td scr="controlBGround" style="width: 10%">
                                                                        <asp:RadioButtonList ID="RadioButtonList4" runat="server" RepeatDirection="Horizontal"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="Yes">&lt;b&gt;Yes&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="No">&lt;b&gt;No&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                      </td>
                                                                </tr>   

                                                                
                                                                <tr id="tr1" runat="server">                                
                                                                     <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;hgf BNDG lkj</td>
                                                                    <td style="width:1%"><asp:CustomValidator ID="CustomValidator4" runat="server" ErrorMessage="Enter the Symbol for the vehicle." Cssscr="validatorStyle" ControlToValidate="TextBox4" Font-Bold="false" Enabled="false" ClientValidationFunction="ValidateSymbol" ValidateEmptyText="true">*</asp:CustomValidator></td>
                                                                    
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0"><tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox12" runat="server" Style="width: 100%;" Cssscr="Required" onKeyPress="javascript:return validateNonNumber(event);"></asp:TextBox></td>
                                                                            <td align="left" valign="bottom"></td>
                                                                            </tr></table>
                                                                    </td>
                                                                 
                                                                    <td style="width:1%"></td>
                                                                    <td  colspan ="3" scr="labelText"  style="width:25%" >lkluj kjhklhj (select all that apply) </td>
                                                                    
                                                            
                                                                </tr> 
                                                                <tr id="tr2" runat="server">                                
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;Year Built</td>
                                                                    <td style="width:1%"><asp:CustomValidator ID="CustomValidator5" runat="server" ErrorMessage="Enter the Comprehensive Symbol for the vehicle." Cssscr="validatorStyle" ControlToValidate="txtCompSymbol" Font-Bold="false" Enabled="false" ClientValidationFunction="ValidateSymbol" ValidateEmptyText="true">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0"><tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox13" runat="server" Style="width: 100%;" Cssscr="Required" onKeyPress="javascript:return validateNonNumber(event);"></asp:TextBox></td>
                                                                            <td align="left" valign="bottom"></td>
                                                                            </tr></table>
                                                                    </td>
                                                     
                                                                 <td style="width:1%"></td>
                                                                     
                                                                        
                                                                        <td><asp:CheckBox ID="CheckBox5" runat="server" Text="Central Fire Alarm" Enabled="false" /></td>
                                                                         <td colspan ="2"><asp:CheckBox ID="CheckBox6" runat="server" Text="Cooking Extinguishing System" Enabled="false" /></td>
                                                            
                                                                </tr> 
                                 
                                                                <tr><td colspan ="4" ></td>  <td><asp:CheckBox ID="CheckBox7" runat="server" Text="Central Burglar Alarm" Enabled="false" /></td>
                                                                    <td colspan ="2"> <asp:CheckBox ID="CheckBox8" runat="server" Text="Sprinkler" Enabled="false" /></td></tr>
                                                                <tr> <td colspan ="4" > <asp:ImageButton ID="ImageButton5" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>
                                                                     <td colspan ="2" > <asp:ImageButton ID="ImageButton6" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>   
                                                                      <td> <asp:ImageButton ID="ImageButton7" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>                        </tr>
                                                            </table> 
                                                        </td>
                                                        

                                                    </tr>

                                                </table>
                                                </div> 

                                                <div id="divLoc3">
                                                <table width="100%" cellpadding="0" cellspacing="1">
                                                    <tr>
                                                        <td scr="tableHeader" colspan="3">
                                                            <input lkj="checkbox"  id= "cbLoc3" runat="server"   onclick  ="cbLocation3();"/><label style ="visibility :hidden ;">123</label>Location 3&nbsp;<label style ="visibility :hidden ; border :0">1234567222222810</label>(7 
                                                            )</td>
                                                    </tr>

                                                    <tr><td style="width: 12% ; background-color :CBBEB5"  ><panel><asp:RadioButtonList ID="rbBNDG3" runat="server" RepeatDirection = "Vertical"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="BNDG-1">&lt;b&gt;BNDG 1&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-2">&lt;b&gt;BNDG 2&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-3">&lt;b&gt;BNDG 3&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-4">&lt;b&gt;BNDG 4&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList></panel>
                                                                        <div  style ="height: 10%"></div> <label style="height =125px;  visibility :hidden ; border :0px">a</label>  <asp:ImageButton ID="ImageButton8" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>
                                                                        
                                                        <td valign="top" align="left" style="width:100%">
                                                            <table width="100%" cellpadding="0" cellspacing="1" border="0">
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;BNDG Description</td>
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator12" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox1" Font-Bold="false">*</asp:RequiredFieldValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:TextBox ID="TextBox14" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    <td style="width:1%"></td>
                                                                    <td   scr="labelText"  style="width:11%">BNDG fdxfa</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator13" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                    <td scr="controlBGround" style="width: 15%"><asp:TextBox ID="TextBox15" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    
                                                                </tr>

                                                                 <tr>
                                                                    <td scr="labelText" style="width: 12%"><table width="100%" cellpadding="0" cellspacing="0"><tr><td scr="labelText">&nbsp;&nbsp;&nbsp;scr cre</td><td align="right"><span id="Span4" runat="server" style="text-align:right; font-weight:normal;"></span></td></tr></table></td>
                                                                    <td style="width:1%"><asp:CustomValidator runat="server"
                                                                    ID="CustomValidator6" ControlToValidate="txtVIN" ErrorMessage="Enter a VIN that's at least ten characters" ClientValidationFunction="ValidateVIN" ValidateEmptyText="true" Cssscr="validatorStyle">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0">
                                                                            <tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox16" runat="server" width="100%" Cssscr="Required" MaxLength="17"></asp:TextBox></td>
                                                                                <td align="left" valign="bottom"><img alt="" id="img6" runat="server" src="~/Images/Buttons/btn_elipse.jpg" style="cursor:pointer" />
                                                                                </td></tr></table>
                                                                    </td>  
                                                                    
                                                                    
                                                                     <td style="width:1%"></td>
                                                                    <td  scr="labelText" style="width:11%">eam2</td>
                                                                    
                                                                    <td style="width:1%"></td> <td scr="controlBGround" style="width: 10%">
                                                                        <asp:RadioButtonList ID="RadioButtonList5" runat="server" RepeatDirection="Horizontal"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="Yes">&lt;b&gt;Yes&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="No">&lt;b&gt;No&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                      </td>
                                                                       
                                                                    
                                                                                                             
                                                                </tr>
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%"><table width="100%" cellpadding="0" cellspacing="0"><tr><td scr="labelText">&nbsp;&nbsp;&nbsp;scr Description</td><td align="right"><span id="Span5" runat="server" style="text-align:right; font-weight:normal;"></span></td></tr></table></td>
                                                                    <td style="width:1%"><asp:CustomValidator runat="server"
                                                                    ID="CustomValidator7" ControlToValidate="txtVIN" ErrorMessage="Enter a VIN that's at least ten characters" ClientValidationFunction="ValidateVIN" ValidateEmptyText="true" Cssscr="validatorStyle">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0">
                                                                            <tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox17" runat="server" width="100%" Cssscr="Required" MaxLength="17"></asp:TextBox></td>
                                                                                <td align="left" valign="bottom"><img alt="" id="img7" runat="server" src="~/Images/Buttons/btn_elipse.jpg" style="cursor:pointer" />
                                                                                </td></tr></table>
                                                                    </td>   
                                                                    
                                                                    
                                                                     <td style="width:1%"></td>
                                                                    <td   scr="labelText"  style="width:11%">BNDG jkjfydf</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator14" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                  
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList9" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>
                                                                    
                                                                    
                                                                                                            
                                                                </tr>
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;freider</td>
                                                                    <td style="width:1%"></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList10" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>

                                                                          <td style="width:1%"></td>
                                                                    <td scr="labelText" style="width:11%">drelk speed<img alt="" id="img8" runat="server" src="~/Images/Extra/question_mark.gif" style="cursor:pointer" /></td>
                                                      
                                                                    <td style="width:1%">
                                                                        &nbsp;<asp:RequiredFieldValidator ID="RequiredFieldValidator15" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator>
                                                                        &nbsp;</td>                                      
                                                                   
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList11" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value="">4%</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>


                                                                </tr>    
                                                                <tr>
                                                                        <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;dere dres</td>
                                                                         <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator16" runat="server" ErrorMessage="Enter the vehicle Make." Cssscr="validatorStyle" ControlToValidate="txtMake" Font-Bold="false">*</asp:RequiredFieldValidator></td>
                                                                        <td scr="controlBGround" style ="width:15%"><asp:TextBox ID="TextBox18" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                            </asp:TextBox><asp:DropDownList ID="DropDownList12" runat="server" Style="width: 100%; display:none;" Cssscr="Required">                                      
                                                                                </asp:DropDownList></td>


                                                                                 <td style="width:1%"></td>
                                                                    <td   scr="labelText" style="width:11%" >jhjgh ljliu fdxfa</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator17" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                    <td scr="controlBGround" style="width: 15%"><asp:TextBox ID="TextBox19" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    



                                                                </tr>

                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;wrte lkj</td>
                                                                    <td style="width:1%"></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList13" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>

                                                                          <td style="width:1%"></td>
                                                                    <td  scr="labelText"  style="width:11%">Include ion kjhklhj</td>
                                                                    
                                                                 
                                                                    <td style="width:1%"></td> <td scr="controlBGround" style="width: 10%">
                                                                        <asp:RadioButtonList ID="RadioButtonList6" runat="server" RepeatDirection="Horizontal"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="Yes">&lt;b&gt;Yes&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="No">&lt;b&gt;No&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                      </td>
                                                                </tr>   

                                                                
                                                                <tr id="tr3" runat="server">                                
                                                                     <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;hgf BNDG lkj</td>
                                                                    <td style="width:1%"><asp:CustomValidator ID="CustomValidator8" runat="server" ErrorMessage="Enter the Symbol for the vehicle." Cssscr="validatorStyle" ControlToValidate="TextBox4" Font-Bold="false" Enabled="false" ClientValidationFunction="ValidateSymbol" ValidateEmptyText="true">*</asp:CustomValidator></td>
                                                                    
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0"><tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox20" runat="server" Style="width: 100%;" Cssscr="Required" onKeyPress="javascript:return validateNonNumber(event);"></asp:TextBox></td>
                                                                            <td align="left" valign="bottom"></td>
                                                                            </tr></table>
                                                                    </td>
                                                             
                                                                    <td style="width:1%"></td>
                                                                    <td  colspan ="3" scr="labelText"  style="width:25%" >lkluj kjhklhj (select all that apply) </td>
                                                                    
                                                             
                                                                </tr> 
                                                                <tr id="tr4" runat="server">                                
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;Year Built</td>
                                                                    <td style="width:1%"><asp:CustomValidator ID="CustomValidator9" runat="server" ErrorMessage="Enter the Comprehensive Symbol for the vehicle." Cssscr="validatorStyle" ControlToValidate="txtCompSymbol" Font-Bold="false" Enabled="false" ClientValidationFunction="ValidateSymbol" ValidateEmptyText="true">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0"><tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox21" runat="server" Style="width: 100%;" Cssscr="Required" onKeyPress="javascript:return validateNonNumber(event);"></asp:TextBox></td>
                                                                            <td align="left" valign="bottom"></td>
                                                                            </tr></table>
                                                                    </td>
                                                    
                                                                 <td style="width:1%"></td>
                                                                   
                                                                        
                                                                        <td><asp:CheckBox ID="CheckBox9" runat="server" Text="Central Fire Alarm" Enabled="false" /></td>
                                                                         <td colspan ="2"><asp:CheckBox ID="CheckBox10" runat="server" Text="Cooking Extinguishing System" Enabled="false" /></td>
                                                            
                                                                </tr> 
                                 
                                                                <tr><td colspan ="4" ></td>  <td><asp:CheckBox ID="CheckBox11" runat="server" Text="Central Burglar Alarm" Enabled="false" /></td>
                                                                    <td colspan ="2"> <asp:CheckBox ID="CheckBox12" runat="server" Text="Sprinkler" Enabled="false" /></td></tr>
                                                                <tr> <td colspan ="4" > <asp:ImageButton ID="ImageButton9" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>
                                                                     <td colspan ="2" > <asp:ImageButton ID="ImageButton10" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>   
                                                                      <td> <asp:ImageButton ID="ImageButton11" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>                        </tr>
                                                            </table> 
                                                        </td>
                                                        

                                                    </tr>
                                                </table> 
                                                </div> 

                                                <div id="divLoc4">
                                                <table width="100%" cellpadding="0" cellspacing="1">
                                                    <tr>
                                                        <td scr="tableHeader" colspan="3">
                                                            <input lkj="checkbox"  id= "cbLoc4" runat="server"   onclick  ="cbLocation4();"/><label style ="visibility :hidden ;">123</label>Location 4&nbsp;<label style ="visibility :hidden ; border :0">1234567222222810</label>(3)</td>
                                                    </tr>

                                                    <tr><td style="width: 12% ; background-color :CBBEB5"  ><panel><asp:RadioButtonList ID="rbBNDG4" runat="server" RepeatDirection = "Vertical"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="BNDG-1">&lt;b&gt;BNDG 1&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-2">&lt;b&gt;BNDG 2&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-3">&lt;b&gt;BNDG 3&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="BNDG-4">&lt;b&gt;BNDG 4&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList></panel>
                                                                        <div  style ="height: 10%"></div> <label style="height =125px;  visibility :hidden ; border :0px">a</label>  <asp:ImageButton ID="ImageButton12" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>
                                                                        
                                                        <td valign="top" align="left" style="width:100%">
                                                            <table width="100%" cellpadding="0" cellspacing="1" border="0">
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;BNDG Description</td>
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator18" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox1" Font-Bold="false">*</asp:RequiredFieldValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:TextBox ID="TextBox22" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    <td style="width:1%"></td>
                                                                    <td   scr="labelText"  style="width:11%">BNDG fdxfa</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator19" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                    <td scr="controlBGround" style="width: 15%"><asp:TextBox ID="TextBox23" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    
                                                                </tr>

                                                                 <tr>
                                                                    <td scr="labelText" style="width: 12%"><table width="100%" cellpadding="0" cellspacing="0"><tr><td scr="labelText">&nbsp;&nbsp;&nbsp;scr cre</td><td align="right"><span id="Span6" runat="server" style="text-align:right; font-weight:normal;"></span></td></tr></table></td>
                                                                    <td style="width:1%"><asp:CustomValidator runat="server"
                                                                    ID="CustomValidator10" ControlToValidate="txtVIN" ErrorMessage="Enter a VIN that's at least ten characters" ClientValidationFunction="ValidateVIN" ValidateEmptyText="true" Cssscr="validatorStyle">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0">
                                                                            <tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox24" runat="server" width="100%" Cssscr="Required" MaxLength="17"></asp:TextBox></td>
                                                                                <td align="left" valign="bottom"><img alt="" id="img9" runat="server" src="~/Images/Buttons/btn_elipse.jpg" style="cursor:pointer" />
                                                                                </td></tr></table>
                                                                    </td>  
                                                                    
                                                                    
                                                                     <td style="width:1%"></td>
                                                                    <td  scr="labelText" style="width:11%">eam2</td>
                                                                    
                                                                    <td style="width:1%"></td> <td scr="controlBGround" style="width: 10%">
                                                                        <asp:RadioButtonList ID="RadioButtonList7" runat="server" RepeatDirection="Horizontal"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="Yes">&lt;b&gt;Yes&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="No">&lt;b&gt;No&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                      </td>
                                                                       
                                                                    
                                                                                                             
                                                                </tr>
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%"><table width="100%" cellpadding="0" cellspacing="0"><tr><td scr="labelText">&nbsp;&nbsp;&nbsp;scr Description</td><td align="right"><span id="Span7" runat="server" style="text-align:right; font-weight:normal;"></span></td></tr></table></td>
                                                                    <td style="width:1%"><asp:CustomValidator runat="server"
                                                                    ID="CustomValidator11" ControlToValidate="txtVIN" ErrorMessage="Enter a VIN that's at least ten characters" ClientValidationFunction="ValidateVIN" ValidateEmptyText="true" Cssscr="validatorStyle">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0">
                                                                            <tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox25" runat="server" width="100%" Cssscr="Required" MaxLength="17"></asp:TextBox></td>
                                                                                <td align="left" valign="bottom"><img alt="" id="img10" runat="server" src="~/Images/Buttons/btn_elipse.jpg" style="cursor:pointer" />
                                                                                </td></tr></table>
                                                                    </td>   
                                                                    
                                                                    
                                                                     <td style="width:1%"></td>
                                                                    <td   scr="labelText"  style="width:11%">BNDG jkjfydf</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator20" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList14" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>
                                                                    
                                                                    
                                                                                                            
                                                                </tr>
                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;freider</td>
                                                                    <td style="width:1%"></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList15" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>

                                                                          <td style="width:1%"></td>
                                                                    <td scr="labelText" style="width:11%">drelk speed<img alt="" id="img11" runat="server" src="~/Images/Extra/question_mark.gif" style="cursor:pointer" /></td>
                                                            
                                                                    <td style="width:1%">
                                                                        &nbsp;<asp:RequiredFieldValidator ID="RequiredFieldValidator21" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator>
                                                                        &nbsp;</td>                                      
                                                                   
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList16" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value="">4%</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>


                                                                </tr>    
                                                                <tr>
                                                                        <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;dere dres</td>
                                                                         <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator22" runat="server" ErrorMessage="Enter the vehicle Make." Cssscr="validatorStyle" ControlToValidate="txtMake" Font-Bold="false">*</asp:RequiredFieldValidator></td>
                                                                        <td scr="controlBGround" style ="width:15%"><asp:TextBox ID="TextBox26" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                            </asp:TextBox><asp:DropDownList ID="DropDownList17" runat="server" Style="width: 100%; display:none;" Cssscr="Required">                                      
                                                                                </asp:DropDownList></td>


                                                                                 <td style="width:1%"></td>
                                                                    <td   scr="labelText" style="width:11%" >jhjgh ljliu fdxfa</td>
                                                                    
                                                                    <td style="width:1%"><asp:RequiredFieldValidator ID="RequiredFieldValidator23" runat="server" ErrorMessage="Enter the vehicle Model." Cssscr="validatorStyle" ControlToValidate="TextBox2" Font-Bold="false">*</asp:RequiredFieldValidator></td>                                      
                                                                    <td scr="controlBGround" style="width: 15%"><asp:TextBox ID="TextBox27" runat="server" Style="width: 100%;" Cssscr="Required"></asp:TextBox></td> 
                                                                    



                                                                </tr>

                                                                <tr>
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;wrte lkj</td>
                                                                    <td style="width:1%"></td>
                                                                    <td scr="controlBGround" style ="width:15%"><asp:DropDownList ID="DropDownList18" runat="server" Style="width: 100%;" Cssscr="Required">
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                        <asp:ListItem Value="">r</asp:ListItem>
                                                                        <asp:ListItem Value=""></asp:ListItem>
                                                                         <asp:ListItem Value=""></asp:ListItem>
                                                                         </asp:DropDownList></td>

                                                                          <td style="width:1%"></td>
                                                                    <td  scr="labelText"  style="width:11%">Include ion kjhklhj</td>
                                                                    
                                                                 
                                                                    <td style="width:1%"></td> <td scr="controlBGround" style="width: 10%">
                                                                        <asp:RadioButtonList ID="RadioButtonList8" runat="server" RepeatDirection="Horizontal"
                                                                            Font-Bold="False">
                                                                            <asp:ListItem Value="Yes">&lt;b&gt;Yes&lt;/b&gt;</asp:ListItem>
                                                                            <asp:ListItem Value="No">&lt;b&gt;No&lt;/b&gt;</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                      </td>
                                                                </tr>   

                                                                
                                                                <tr id="tr5" runat="server">                                
                                                                     <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;hgf BNDG lkj</td>
                                                                    <td style="width:1%"><asp:CustomValidator ID="CustomValidator12" runat="server" ErrorMessage="Enter the Symbol for the vehicle." Cssscr="validatorStyle" ControlToValidate="TextBox4" Font-Bold="false" Enabled="false" ClientValidationFunction="ValidateSymbol" ValidateEmptyText="true">*</asp:CustomValidator></td>
                                                                    
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0"><tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox28" runat="server" Style="width: 100%;" Cssscr="Required" onKeyPress="javascript:return validateNonNumber(event);"></asp:TextBox></td>
                                                                            <td align="left" valign="bottom"></td>
                                                                            </tr></table>
                                                                    </td>
                                                          
                                                                    <td style="width:1%"></td>
                                                                    <td  colspan ="3" scr="labelText"  style="width:25%" >lkluj kjhklhj (select all that apply) </td>
                                                                    
                                                             
                                                                </tr> 
                                                                <tr id="tr6" runat="server">                                
                                                                    <td scr="labelText" style="width: 12%">&nbsp;&nbsp;&nbsp;Year Built</td>
                                                                    <td style="width:1%"><asp:CustomValidator ID="CustomValidator13" runat="server" ErrorMessage="Enter the Comprehensive Symbol for the vehicle." Cssscr="validatorStyle" ControlToValidate="txtCompSymbol" Font-Bold="false" Enabled="false" ClientValidationFunction="ValidateSymbol" ValidateEmptyText="true">*</asp:CustomValidator></td>
                                                                    <td scr="controlBGround" style ="width:15%">
                                                                        <table width="100%" cellpadding="0" cellspacing="0"><tr valign="top"><td style="width:90%"><asp:TextBox ID="TextBox29" runat="server" Style="width: 100%;" Cssscr="Required" onKeyPress="javascript:return validateNonNumber(event);"></asp:TextBox></td>
                                                                            <td align="left" valign="bottom"></td>
                                                                            </tr></table>
                                                                    </td>
                                                    
                                                                 <td style="width:1%"></td>
                                                       
                                                                        
                                                                        <td><asp:CheckBox ID="CheckBox13" runat="server" Text="Central Fire Alarm" Enabled="false" /></td>
                                                                         <td colspan ="2"><asp:CheckBox ID="CheckBox14" runat="server" Text="Cooking Extinguishing System" Enabled="false" /></td>
                                                            
                                                                </tr> 
                                 
                                                                <tr><td colspan ="4" ></td>  <td><asp:CheckBox ID="CheckBox15" runat="server" Text="Central Burglar Alarm" Enabled="false" /></td>
                                                                    <td colspan ="2"> <asp:CheckBox ID="CheckBox16" runat="server" Text="Sprinkler" Enabled="false" /></td></tr>
                                                                <tr> <td colspan ="4" > <asp:ImageButton ID="ImageButton13" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>
                                                                     <td colspan ="2" > <asp:ImageButton ID="ImageButton14" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>   
                                                                      <td> <asp:ImageButton ID="ImageButton15" ImageUrl="~/Images/Buttons/btn_AddLocation.gif"
                                                                                                runat="server" CausesValidation="false" 
                                                                                                OnClientClick="javascript:return window.confirm('Are you sure you want to delete the current Additional Interest? ');"
                                                                                                TabIndex="-10" /> </td>                        </tr>
                                                            </table> 
                                                        </td>
                                                        

                                                    </tr>
                                                </table>
                                                </div>






                                            </td> 

                                        </tr>  



                                        
                                   

                                    </table> 
                            
                                </ContentTemplate> 
                                
                            </asp:UpdatePanel>
                        </td>
                   </tr>
                </table>
            </td>
        </tr>
    </table>
</asp:Content>

Answer : Jquery

Only this two divs?
Anyway, from what I saw in Your code is that checkboxes are inside divs (divloc1,divloc2 etc)
When You click the checkbox and attempt to hide coresponding div, You'll hide checkbox also. How can You show it again? :)
So, what Im trying to tell You, is that You need to do something like this (see the code below).
Do You have this page placed on some server where I can see it live through my browser?

Regards


1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
<div id="divLoc4">
                                                <table width="100%" cellpadding="0" cellspacing="1">
                                                    <tr>
                                                        <td scr="tableHeader" colspan="3">
                                                            <input lkj="checkbox"  id= "cbLoc4" runat="server"   onclick  ="cbLocation4();"/><label style ="visibility :hidden ;">123</label>Location 4&nbsp;<label style ="visibility :hidden ; border :0">1234567222222810</label>(3)</td>
                                                    </tr>
                                                </table>
<div id="yournewdiv">
                                                <table width="100%" cellpadding="0" cellspacing="1">
<!--table content with radio buttons goes here-->
                                                </table>
</div>
Random Solutions  
 
programming4us programming4us