summaryrefslogtreecommitdiff
path: root/test/data/html/www.directline.com.html
blob: 1f943215af3cd34bf9fb0090225a8b316d55dd8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML lang="en">
<HEAD>
    <TITLE>Car insurance, Home insurance, Life insurance & more - Direct Line</TITLE>


    
            <META NAME="keywords" CONTENT="Car insurance, Home insurance, Life, insurance, Travel insurance, Direct line, online quote, mortgages, pet, insurance, Breakdown cover, critiical illness cover, policy, loans, Annual travel insurance, UK, named driver, no claims discount, buildings and contents insurance, online discount">
            
        

    
            <META NAME="description" CONTENT="Direct Line offer car insurance, home insurance, life insurance, travel insurance, mortgages, personal loans,breakdown cover and much more!  Buy online for our cheapest car and home insurance with online discounts - get a quote today and find the policy to suit you.">
            
        


    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1" >
    <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <META HTTP-EQUIV="Expires" CONTENT="0">

    <LINK REL="stylesheet" TYPE="text/css" href="/generic/Stylesheets/homepage.css">
    
    <SCRIPT language="javascript" type="text/javascript" src="/generic/js/cookieClass.js"></SCRIPT>
    <SCRIPT language="javascript" type="text/javascript" src="/generic/js/homepage.js"></SCRIPT>
    <SCRIPT language="javascript" type="text/javascript" src="/generic/js/common.js"></SCRIPT>
       
     
                  
    <SCRIPT language=JavaScript src="/generic/js/site-tracker.js" type="text/javascript"></SCRIPT>
    <SCRIPT language=JavaScript type="text/javascript">
        if ( typeof displayDescription != "undefined") {
            defaultStatus = "Direct Line Homepage";
        }
    </SCRIPT>    
         
       
         
    <noscript>You currently have javascipt disabled or are using a browser that does not support the javascript technology.  For details on Direct Line's products and how to obtain a quotation please click on the Accessibility link in the page footer</noscript>
    <script type="text/javascript" language="JavaScript">
        /* ssa retrieval begin */
        // cookie for this document, called "dlissa", lives as long as the session, available to the entire site
        var visitordata = new Cookie(document, "dlissa", null, "/");

        if( ssa() )
        {
            visitordata.ssaCode = ssa();        // if there is an ssa cde on the url, bake it into a cookie
        }
        else
        {
            visitordata.load();     // otherwise try and retrieve an ssa code from an existing cookie
        }
        visitordata.store();
        /* ssa retrieval end */
        
       function openMetafaq(url){
          winHandle = window.open(url, "metafaq", "height=525,width=465,screenX=15,screenY=50,top=15,left=50,resizable=yes");
          winHandle.focus();
          return false;
       }

       function searchMetafaq(formObj){
          openMetafaq("");
          formObj.target = "metafaq";
          return true;
       }

       function skipBlankOptions(selectId) {
      var selectIndex   = document.getElementById(selectId).selectedIndex;
      for(var i=selectIndex; i>=0; i--){
          if(document.getElementById(selectId).options[i].value!=""){
             document.getElementById(selectId).options[i].selected = true;
         break;
          }
      }
       }


function doSel()
{
     obj =  document.productoptions.productoptions;

     for (i = 1; i < obj.length; i++) {
        if (obj[i].selected == true) {
           eval(obj[i].value);
        }
     }
}

function getaQuote(){
    product = document.qnboptions.qnboptions[document.qnboptions.qnboptions.selectedIndex].value;
    if ( product != "" ) {
        onChange=openNewWindowURL(product);
    }
}
    </script>


</HEAD>
<BODY>
<div id="accessibilityLink">
    <a href="/accessibility/welcome.htm" title="link to accessibility web pages - opens in new window" target="_self">Accessibility</a>
</div>

      
       
                 
           <div id="pageContent"> 
        
      
             <div id="headerSection">
             
                         
                <div style="width:62.1em;height:34px;TOP:0px;LEFT:0em;POSITION: absolute;border:0px;margin:0;background-repeat:repeat-x;background-color:#ececec;">
                
            
             
                 <div style="width:51.9em;height:34px;TOP:0px;LEFT:0em;POSITION: absolute;border:0px;margin:0">
                    <div style="border:0px solid red">
                        <div title="Back to Directline Homepage" style="float:left;height:34px;">
                            <div style="border:0px solid green;">
                                <table  cellpadding="4" cellspacing="0" border="0"  style="height:34px;">
                                    <tr>
                                        <td>&nbsp;</td><td valign="bottom"><span class="small">Car Insurance, Home Insurance, Travel Insurance - A good deal better from Direct Line</span></td>
                                    </tr>
                                </table>
                            </div>
                        </div>
   
                        <div style="float:right;padding:0;margin:0;border:0px solid green;height:100%;width:16em;">
                            <div class="stanza" style="float:left;width:auto;padding:0px solid green;margin:0">
                                    <table  cellpadding="1" cellspacing="0" border="0" style="height:34px;">
                                        <tr><td valign="bottom">
                                            <form  name="productoptions" action="#" target="_self" ><span class="small2">
                                                   <select class="product-select-box" name="productoptions" id="productoptions">
                                                       
                                                    
                                                            
                                                                 <option label="select a product to view" value="">Select a product to view</option>
                                                                 <option label="Car insurance" value="location.href=&#39;/motor/welcome.htm&#39;">Car Insurance</option>
                                                                 <option label="Home insurance" value="location.href=&#39;/home/welcome.htm&#39;">Home Insurance</option>
                                                                 <option label="Business Insurance" value="location.href=&#39;http://www.directlineforbusiness.co.uk&#39;">Business Insurance</option>
                                                                 <option label="Breakdown cover" value="location.href=&#39;/rescue/welcome.htm&#39;">Breakdown Cover</option>
                                                                 <option label="European Breakdown" value="location.href=&#39;/european_motoring/welcome.htm&#39;">European Breakdown</option>
                                                                 <option label="Travel Insurance" value="location.href=&#39;/travel/welcome.htm&#39;">Travel Insurance</option>
                                                                 <option label="Home emergency" value="location.href=&#39;/homeresponse24/welcome.htm&#39;">Home Emergency</option>
                                                                 <option label="Pet insurance" value="location.href=&#39;/pet/welcome.htm&#39;">Pet Insurance</option>
                                                                 <option label="Life insurance" value="location.href=&#39;/life/welcome.htm&#39;">Life Insurance</option>
                                                                 <option label="Critical Illness" value="location.href=&#39;/critical_illness/welcome.htm&#39;">Critical Illness </option>
                                                                 <option label="Van Insurance" value="location.href=&#39;/van/welcome.htm&#39;">Van Insurance</option>
                                                                 <option label="Savings" value="location.href=&#39;/savings/welcome.htm&#39;">Savings</option>
                                                                 <option label="Loans" value="location.href=&#39;/loans/welcome.htm&#39;">Loans</option>
                                                                 <option label="Mortgages" value="location.href=&#39;/mortgages/welcome.htm&#39;">Mortgages</option>

                                                                        
                                                       
                                                                                              
                                                  </select>                                         
                                                </span>
                                            </form>
                                        </td></tr>
                                        <tr><td><img src="/staticpages/images/common/spacer.gif" width="1" height="1" alt=""></td></tr>
                                    </table>
                            </div>
   
   
                            <div style="float:left;border:0px solid black;">
                                    <table  cellpadding="0" cellspacing="0" border="0" style="height:34px;padding-bottom:5px;padding-left:2px;">
                                        <tr><td valign="bottom">
                                            <DIV class="gobutton_t">
                                                <DIV class="gobutton_b">
                                                    <DIV class="gobutton_l">
                                                        <DIV class="gobutton_r">
                                                            <DIV class="gobutton_bl">
                                                                <DIV class="gobutton_br">
                                                                    <DIV class="gobutton_tl">
                                                                        <DIV class="gobutton_tr">
                                                                            <a title="select a product to view, go button" href="javascript:doSel();" class="normal-no-underline"><div class="whiteboldsmall">GO ></div></a>
                                                                        </DIV>
                                                                    </DIV>
                                                                </DIV>
                                                            </DIV>
                                                        </DIV>
                                                    </DIV>
                                                </DIV>
                                            </div>
                                        </td></tr>
                                    </table>
                            </div>
                        </div>
                    </div>
                </div>
               </div>

            

            
            

        <div id="advertHolder">
         <div id="logo" title="Direct Line Insurance plc">
            <p class="navLink">            
            
            
            
            
            <a href="http://www.directline.com/">
                            <img src="/generic/images_sp/dllogo.gif" width="226px" height="71px" border="0" alt="Direct Line Insurance plc">         
                </a>
            </p>
         </div>
         <div id="topadvert">
             <img src="/images/homepage/spacer.gif" border="0" alt="Image of red phone" height="75" width="640">
         </div>
       </div>           


      </div>

      
       
                 
           <table id="middleSection" border="0" cellspacing="0" cellpadding="0"><tr>
        
      

      
          <td valign="top"> <table cellspacing="0" cellpadding="0" width="230px" border="0" align="right"><tr><td><img src="/images/homepage/spacer.gif" width="15px" height="1px" alt=""></td><td>
              <div id="leftnavigation">
          
                    
                    
                        
                            <div class="menu">
                            <!-- 18/11/2005 -->                                
                                <DIV class="left_nav_t">
                                    <DIV class="left_nav_b">
                                        <DIV class="left_nav_l">
                                            <DIV class="left_nav_r">
                                                <DIV class="left_nav_bl">
                                                    <DIV class="left_nav_br">
                                                        <DIV class="left_nav_tl" style="border:0px solid black;">
                                                            <DIV class="left_nav_tr">
                                                                  
                                                                  
                                                                        

                                                                            <a href="javascript:openNewWindowURL('000024', 'link2001');" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/get_quote_car_btn');" title="Car insurance" target="_self"><span title="Car insurance" class="normal">GET A CAR QUOTE</span></a>
                                                                       
                                                                  

                                                            </DIV>
                                                        </DIV>
                                                    </DIV>
                                                </DIV>
                                            </DIV>
                                        </DIV>
                                    </DIV>
                                </div> 
                            <!-- 18/11/2005 -->                       
                                
                                
                                
                                
                                <div class="menuItems">
                                    
                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="javascript:openNewWindowURL('000024', 'link2001');" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/get_quote_car_link');"   title="GET A CAR QUOTE"  class="normal">
                                                                    GET A CAR QUOTE
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/motor/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_motor_link');"  target="_self" title="Car insurance information"  class="normal">
                                                                    Car insurance information
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/insurance/startaction.do?entrypoint=0001&operation=0002" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/retrieve_quote_car_link');"  target="_blank" title="Retrieve a saved quote"  class="normal">
                                                                    Retrieve a saved quote
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                    
                                </div>                     
                            </div>                     
                        
                    
                        
                            <div class="menu">
                            <!-- 18/11/2005 -->                                
                                <DIV class="left_nav_t">
                                    <DIV class="left_nav_b">
                                        <DIV class="left_nav_l">
                                            <DIV class="left_nav_r">
                                                <DIV class="left_nav_bl">
                                                    <DIV class="left_nav_br">
                                                        <DIV class="left_nav_tl" style="border:0px solid black;">
                                                            <DIV class="left_nav_tr">
                                                                  
                                                                  
                                                                        

                                                                            <a href="javascript:openNewWindowURL('000023','link2005');" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/home_quote_car_btn');" title="GET A HOME INSURANCE" target="_self"><span title="GET A HOME INSURANCE" class="normal">GET A HOME QUOTE</span></a>
                                                                       
                                                                  

                                                            </DIV>
                                                        </DIV>
                                                    </DIV>
                                                </DIV>
                                            </DIV>
                                        </DIV>
                                    </DIV>
                                </div> 
                            <!-- 18/11/2005 -->                       
                                
                                
                                
                                
                                <div class="menuItems">
                                    
                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="javascript:javascript:openNewWindowURL('000023','link2005');" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/home_quote_car_link');"   title="GET A HOME QUOTE"  class="normal">
                                                                    GET A HOME QUOTE
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/home/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_home_link');"   title="Home information"  class="normal">
                                                                    Home information
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/insurance/startaction.do?entrypoint=0001&operation=0002" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/retrieve_quote_home_link');"  target="_blank" title="Retrieve a saved quote"  class="normal">
                                                                    Retrieve a saved quote
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                    
                                </div>                     
                            </div>                     
                        
                    
                        
                            <div class="menu">
                            <!-- 18/11/2005 -->                                
                                <DIV class="left_nav_t">
                                    <DIV class="left_nav_b">
                                        <DIV class="left_nav_l">
                                            <DIV class="left_nav_r">
                                                <DIV class="left_nav_bl">
                                                    <DIV class="left_nav_br">
                                                        <DIV class="left_nav_tl" style="border:0px solid black;">
                                                            <DIV class="left_nav_tr">
                                                                  
                                                                  
                                                                            <span title="More products" class="normal">MORE PRODUCTS</span>
                                                                        
                                                                  

                                                            </DIV>
                                                        </DIV>
                                                    </DIV>
                                                </DIV>
                                            </DIV>
                                        </DIV>
                                    </DIV>
                                </div> 
                            <!-- 18/11/2005 -->                       
                                
                                
                                
                                
                                <div class="menuItems">
                                    
                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/life/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_life_link');"  target="_self" title="Life insurance and Over 50's"  class="normal">
                                                                    Life Insurance and Over 50's
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/travel/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_travel_link');"  target="_self" title="Travel insurance"  class="normal">
                                                                    Travel Insurance
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="http://www.directlineforbusiness.co.uk" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_dl_business_link');"  target="_blank" title="Business Insurance"  class="normal">
                                                                    Business Insurance
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/pet/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_pet_link');"  target="_self" title="Pet insurance"  class="normal">
                                                                    Pet Insurance
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/rescue/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_rescue_link');"   title="Breakdown cover"  class="normal">
                                                                    Breakdown Cover
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/european_motoring/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_european_motor_link');"  target="_self" title="European Breakdown"  class="normal">
                                                                    European Breakdown
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/van/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_van_link');"  target="_self" title="Van Insurance"  class="normal">
                                                                    Van Insurance
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/homeresponse24/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_hr24_link');"   title="Home Emergency"  class="normal">
                                                                    Home Emergency
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/critical_illness/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_critical_illness_link');"  target="_self" title="Critical Illness cover"  class="normal">
                                                                    Critical Illness Cover
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/savings/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_savings_link');"   title="Savings"  class="normal">
                                                                    Savings
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/loans/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_loans_link');"  target="_self" title="Loans"  class="normal">
                                                                    Loans
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/mortgages/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/welcome_mortgages_link');"  target="_self" title="Mortgages"  class="normal">
                                                                    Mortgages
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                             

                                             
                                                  <div>  
                                                        <p> 
                                                                
                                                            
                                                            <span class="medium-normal">
                                                                <a href="/devitt/devitttransfer.htm" onclick="SiTrackTracer('/si/event/tracklink','id=leftnav/homepage/devitt_transfer_link');"  target="_self" title="Devitt Motorcycle Insurance"  class="normal">
                                                                    Devitt Motorcycle Insurance
                                                                </a>
                                                                <img src="/images/homepage/greyarrow.gif" width="8px" height="9px" alt="">
                                                            </span>
                                                        </p>
                                                  </div>
                                             

                                        
                                    
                                </div>                     
                            </div>                     
                        
                    
                    
                    
                    
              </div></td></tr></table></td><td valign="top">  
<!-- 560 -->
            <table id="middleSectionColumn2" width="22em" cellpadding="0" cellspacing="0" border="0">
            <tr><td><div id="promoarea1">
               
                     
                                 <table cellspacing="0" cellpadding="0" border="0" height="250px" width="533px"><tr><td><!-- IE EDigResearch Fix -->
<iframe src="javascript:'';" id="ecos_iframe" style="position:absolute; left: 0; top: 0; width: 1px; height: 1px; visibility: hidden;" title=""></iframe><iframe src="javascript:'';" id="ecos_iframe2" style="position:absolute; left: 0; top: 0; width: 1px; height: 1px; visibility: hidden;" title=""></iframe><div id="ecos_surveylayer" style="position:absolute; left: 0; top: 0; width: 1px; height: 1px; visibility: hidden;" title="Visitor Survey (dynamically generated)"></div><script language="Javascript" type="text/javascript">
<!--
/*** eCustomerOpinions survey code v5.0.0 ****/
/* Copyright (c) 2007 eDigitalResearch Ltd   */
/* Please refer to our Terms & Conditions    */
/* for conditions of use.                    */
/* Do NOT modify this code unless directed   */
/* to do so by a member of eDigitalResearch  */
/* staff.                                    */
/*********************************************/

var cookie_firstparty = true; /* change to 'false' to not use first-party cookies */

var ecos_data = '';
var ecos_data2 = '';
var ecos_data3 = '';
var ecos_test = 0;

var ecos_sid = 921665841;
var ecos_host = 'ecustomeropinions.com';
var ecos_ver = '500';
var ecos_nc = '';
var ecos_go = 0;
var ecos_pu = 0;
var ecos_hm = 0;
var ecos_pm = 0;
var ecos_survey_size_x = 550;
var ecos_survey_size_y = 400;
var ecos_jscode = '';
var ecos_runjs = 'ecos_run();';


var brok = false;
if (parseInt(navigator.appVersion.charAt(0)) >= 4)
	brok = true;


function buildurl(destpage) {
	var ecos_url = ecos_host + '/popup/' + destpage + '.php?sid=' + ecos_sid;

	ecos_url = ((document.location.protocol == 'https:') ? 'https://' : 'http://') + ecos_url;

	if (ecos_test > 0)
		ecos_url = ecos_url + '&test=1';

	ecos_url += '&v=' + ecos_ver + '&r=' + Math.round(Math.random() * 100000);

	var myvar2 = '';
	myvar = window.location.href;

	var icount = 0;
	for (i=0; i<myvar.length; i++) {
		if (myvar.charAt(i) == '/')
			icount++;
		if (icount >= 3)
			myvar2 += myvar.charAt(i);
	};

	if (ecos_data.length > 0)	ecos_url += '&data=' + ecos_data;
	if (ecos_data2.length > 0)	ecos_url += '&data2=' + ecos_data2;
	if (ecos_data3.length > 0)	ecos_url += '&data3=' + ecos_data3;

	if ((screen.width > 0) && (screen.height > 0))
		ecos_url += '&xres=' + screen.width + '&yres=' + screen.height;

	if (screen.colordepth > 0)
		ecos_url += '&depth=' + screen.colordepth;

	ecos_url += '&url=' + escape(myvar2.substring(0,100));
	ecos_url += '&referrer=' + escape(document.referrer.substring(0,100));

	var ck;
	if (ck = getcookie('ecos'))
		ecos_url += '&ecos_cookie=' + ck;

	return ecos_url;
};


function ecos_popup_popup() {
	
	var ua = navigator.userAgent;
	if ((ua.indexOf('NT 5.1') > 0) && (ua.indexOf(' SV1') > 0))
		return false;

	var sw = window.open(buildurl('survey'), 'surveywin', 'location=0,toolbar=no,width=' + ecos_survey_size_x + ',height=' + ecos_survey_size_y + ',directories=no,status=no,scrollbars=yes,resizable=yes');

	if ((ecos_pu) && (sw))
		sw.blur();

	return sw;
}


function ecos_popup_layer() {
	if (!document.getElementById)
		return false;

	var url = buildurl('layer') + '&inlayer=1';
	var t = '<SCR' + 'IPT LANGUAGE="Javascript" SRC="' + url + '"></SCR' + 'IPT>';

	var b, a = document.getElementById("ecos_iframe2");
	if (a.contentDocument)
		b = a.contentDocument;
	else if (a.contentWindow)
		b = a.contentWindow.document;
	else if (a.document)
		b = a.document;
	else
		return false;

	b.open();
	b.write(t);
	b.close();

	return true;
}


function ecos_layer_run() {
	eval(ecos_jscode);
}

function getcookie(name)
{
	var cks = document.cookie.split(';');
	for (var i = 0; i < cks.length; i++)
	{
		var c = cks[i];
		while (c.charAt(0) == ' ') c = c.substring(1, c.length);
		if (c.indexOf(name + '=') == 0) return c.substring(5, c.length);
	}
	return '';
}

function ecos_layer_gono() {
	document.getElementById('ecos_surveylayer').style.visibility = 'hidden';
};


function ecos_layer_gosurveysize() {
	ecos_layer_gono();
	var full_survey_url = buildurl('survey') + '&doneperm=1';
	sw = window.open(full_survey_url, 'surveywin',
		'location=0,toolbar=no,width=' + ecos_survey_size_x + ',height=' + ecos_survey_size_y + ',directories=no,status=no,scrollbars=yes,resizable=yes');
	if ((ecos_pu) && (sw))
		sw.blur();
	return sw;
};


function ecos_layer_golater() {
	sw = ecos_layer_gosurveysize();
	if (sw)
		sw.blur();
	return sw;
};


var runcounter = 0;
function ecos_popup() {

	if (document.getElementById)
		if (!document.getElementById("ecos_iframe"))
			if (runcounter < 10) {
				runcounter++;
				setTimeout('ecos_popup()', 100);
				return;
			};

	if (ecos_go) {

		switch (ecos_pm) {
		case 0 : ecos_popup_popup(); break;
		case 1 : ecos_popup_layer(); break;
		case 2 : if (!ecos_popup_popup()) ecos_popup_layer(); break;
		case 3 : if (!ecos_popup_layer()) ecos_popup_popup();
		};
	};
};


function ecos_run() {
	if (ecos_go) {
		if (ecos_hm == 0)
			ecos_popup();
		else if ((ecos_hm == 1) && (brok)) {
			ecos_pm = 0;
			window.onunload = ecos_popup;
		};
	};
};


function ecos_i() {
	eval(ecos_runjs);
	var dt = new Date();
	if (ecos_nc != '' && cookie_firstparty)
	{
		var ck = getcookie('ecos');
		var cksid = ecos_nc.split('-', 2)[0];
		if (ck.indexOf(cksid) == -1)
		{
			if (ck == '')
				ck = escape(ecos_nc);
			else
				ck = ck + '.' + escape(ecos_nc);
		}
		dt.setDate(dt.getDate() + 7300);
		document.cookie = 'ecos=' + ck + ';expires=' + dt.toGMTString();
	}
};


var runcounter2 = 0;
function ecos_load() {
	var a, b;
	if (!(a = document.getElementById("ecos_iframe"))) {
		if (++runcounter2 < 10)
			setTimeout('ecos_load()', 100);
		return;
	};

	var t = '<SCR' + 'IPT LANGUAGE="Javascript" SRC="' + buildurl('i') + '"></SCR' + 'IPT>';
	if (a.contentDocument)
		b = a.contentDocument;
	else if (a.contentWindow)
		b = a.contentWindow.document;
	else if (a.document)
		b = a.document;
	if (b) {
		b.open();
		b.write(t);
		b.close();
	};
};


if ((document.getElementById) && (window.frames)) {
	ecos_load();
} else {
	ecos_img = new Image;
	ecos_img.src = buildurl('i') + '&nosup=1';
};


// -->
</script>
<noscript><img src="https://ecustomeropinions.com/popup/img.php?sid=921665841&amp;nojs=1" border="0" width="1" height="1" alt="" /><a href="https://ecustomeropinions.com/popup/noscript.php?sid=921665841&amp;nojs=1">We would like your feedback, please fill in our survey</a></noscript>






<!--[if IE]>
<link rel="stylesheet" type="text/css" href="/generic/Stylesheets/ie.css">
<![endif]-->

<script language="javascript" type="text/javascript" src="/lingabot/lingabot.js"></script>
<script language="javascript" type="text/javascript" src="/lingabot/lingabot.js"></script>



<style type="text/css">
div.rightpro_nav_t {display:none;}
</style>

<style type="text/css">
div.rightpro_nav_t {display:none;}
</style>



<!-- Touch Clarity content tag -->
<script>tc_containers = new Array('DL_HP_1_Main', 'DL_HP_2_TopRight', 'DL_HP_3_MidRight');</script>
<script src="/touchclarity/logging.js"></script>
<noscript><img src="http://test2.tc-prelive.com/i?siteID=294" width="1" height="1" border="0" alt="" /></noscript>
<!-- End of Touch Clarity content tag -->

<!-- Touch Clarity Targeting code START -->
<script type=text/javascript>
<!-- Touch Clarity content delivery function - second parameter is the default content in case of timeout -->
tc_optimise('DL_HP_1_Main', '<a href="javascript:openNewWindowURL(\'000024\',\'link0000\');" onclick="SiTrackTracer(\'/si/event/tracklink\',\'id=centre/tc_dl_hp_main/dl_hp_1_main_car_def_rdes.gif\');"><img src="/staticpages/images/tc_images/homepage/dl_hp_1_main_car_def_rdes.gif" alt="You can rely on us for great prices on car insurance - Plus extra discounts when you insure a second car - Get a quote." /></a>');
</script>

<noscript>
<a href="http://www.directline.com/insurance/motor/startaction.do?entrypoint=0001&productline=0001" target="_blank" onclick="SiTrackTracer(\'/si/event/tracklink\',\'id=centre/tc_dl_hp_main/dl_hp_1_main_car_def_rdes.gif\');"><img src="/staticpages/images/tc_images/homepage/dl_hp_1_main_car_def_rdes.gif" alt="You can rely on us for great prices on car insurance - Plus extra discounts when you insure a second car - Get a quote." /></a>
</noscript></td></tr></table>
                          
                                  
            </div>
            <div id="promoarea2">
                      <div id="promoarea2Info" style="float: left;">
                         
                            <div class="menu" style="float:left">
                            <!-- 21/11/2005 -->                                
                                <DIV class="bottompro_nav_t">
                                    <DIV class="bottompro_nav_b">
                                        <DIV class="bottompro_nav_l">
                                            <DIV class="bottompro_nav_r">
                                                <DIV class="bottompro_nav_bl">
                                                    <DIV class="bottompro_nav_br">
                                                        <DIV class="bottompro_nav_tl">
                                                            <DIV class="bottompro_nav_tr" title="SEE WHAT YOU COULD SAVE ONLINE TODAY" >
                                                                  <span class="medium">SEE WHAT YOU COULD SAVE ONLINE TODAY</span>
                                                            </DIV>
                                                        </DIV>
                                                    </DIV>
                                                </DIV>
                                            </DIV>
                                        </DIV>
                                    </DIV>
                                </div> 
                            <!-- 21/11/2005 -->                                      
                                 
                                 <div class="text">
                                     
                                                
                                                    
                                                        <p style="padding-left:5px;padding-right:0px;">
                                                            <span class="medium"><br>
    Get <a href="/motor/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/welcome_motor_link');" class="bold-normal">cheaper car insurance</a> online plus discounts on <a href="http://www.directline.com/home/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/welcome_home_link');" class="bold-normal">home insurance</a> and our online <a href="http://www.directline.com/travel/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/welcome_travel_link');" class="bold-normal">travel insurance</a>.<br>
    
    <br>
    <table width="97%" style="FONT-WEIGHT: bold; FONT-SIZE: 100%;">
    <tbody>
    <tr>
    <td><img src="staticpages/images/dlwelcome/car_icon_vsmall.gif" width="25" height="20"></td>
    <td style="BORDER-TOP: #cccccc 1px solid; PADDING: 6px"><a href="/motor/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/welcome_motor_link2');" class="bold-normal">Car Insurance</a></td>
    <td bgcolor="#f5d9d8"> Save up to 10%</td>
    </tr>
    
    <tr>
    <td><img src="staticpages/images/dlwelcome/home_icon_vsmall.gif" width="25" height="20"></td>
    <td style="BORDER-TOP: #cccccc 1px solid; PADDING: 6px"><a href="/home/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/welcome_home_link2');" class="bold-normal">Home Insurance</a></td>
    <td bgcolor="#f5d9d8"> Save up to 25%</td>
    </tr>
          
    <tr>
    <td><img src="staticpages/images/common/icon03_big.gif" width="25" height="20"></td>
    <td style="BORDER-TOP: #cccccc 1px solid;PADDING: 6px"><a href="http://www.directlineforbusiness.co.uk/" target="_blank" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/welcome_travel_link');" class="bold-normal">Business Insurance</a></td>
    <td bgcolor="#f5d9d8"> Guarantee to beat</td>
    </tr> 

    <tr>
    <td><img src="staticpages/images/dlwelcome/travel_icon_vsmall.gif" width="25" height="20"></td>
    <td style="BORDER-TOP: #cccccc 1px solid; BORDER-BOTTOM: #cccccc 1px solid; PADDING: 6px"><a href="/travel/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/welcome_travel_link');" class="bold-normal" class="bold-normal">Travel Insurance</a></td>
    <td bgcolor="#f5d9d8"> Save 10%</td>
    </tr>   
    </tbody>
</table></span>                        
                                                        </p>
                                                    
                                          
                                         
                                 </div>                         
                            </div>
                                
                      </div>  
                       
                      <div id="rightnavigation"  style="float: right;">                            
                        <div class="menu">
                            
                                 
                                                
                           
                            <!-- 21/11/2005 -->                                
                                <DIV class="right_nav_t">
                                    <DIV class="right_nav_b">
                                        <DIV class="right_nav_l">
                                            <DIV class="right_nav_r">
                                                <DIV class="right_nav_bl">
                                                    <DIV class="right_nav_br">
                                                        <DIV class="right_nav_tl">
                                                            <DIV class="right_nav_tr" title="Existing customers">
                                                                  
                                                                  
                                                                            <span title="Existing customers" class="medium">&nbsp;&nbsp;EXISTING CUSTOMERS</span>
                                                                        
                                                                                                                           
                                                            </DIV>
                                                        </DIV>
                                                    </DIV>
                                                </DIV>
                                            </DIV>
                                        </DIV>
                                    </DIV>
                                </div> 
                            <!-- 21/11/2005 -->  
                            
                            
                            <div class="menuItems" style="height:40px;">
                                  <div style="width:10.7em;padding-left:5px;">
                                       <span class="small">
                                            Access saved quotes and service your policies online<br>

<br>
<table cellspacing="0" cellpadding="0" align="center" border="0">
<tbody>
<tr>
<td><a href="/customer_login/customer_login.htm" target="_self" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/customer_login_btn');" class="bold-normal"><img height="42" alt="Customer login" src="/staticpages/images/dlwelcome/customerlogin_but.gif" width="149" border="0"></a></td>
</tr>

<tr>
<td><a href="/my_directline/how_to_login.htm" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/customer_login_btn');" class="bold-normal"><img height="37" alt="Make a claim" src="/staticpages/images/dlwelcome/makeaclaim_but.gif" width="149" border="0"></a><a href="/my_directline/how_to_login.htm" class="bold-normal"></a></td>
</tr>

<tr>
<td><a href="/home/flood.htm" onclick="SiTrackTracer('/si/event/tracklink','id=center/homepage/weather_advice_btn');" class="bold-normal"><img height="37" alt="Weather advice" src="/staticpages/images/dlwelcome/weather_advice_but.gif" width="149" border="0"></a></td>
</tr>
</tbody>
</table>                                   
                                        </span>                 
                                  </div>
                            </div>
                        </div>
                      </div>                      
              </div>
               
              </td><td width="20px;">&nbsp;</td></tr></table></td>

          
           
                     
             
           <td valign="top"><table cellspacing="0" cellpadding="0" border="0"><tr><td width="20px">&nbsp;</td><td><div id="promoarea3">
                    <div class="menu" style="width:202px;">
                                                    
                            
                            
                            
                            
                            <!-- 18/11/2005 -->                                
                                <DIV class="rightpro_nav_t">
                                    <DIV class="rightpro_nav_b">
                                        <DIV class="rightpro_nav_l">
                                            <DIV class="rightpro_nav_r">
                                                <DIV class="rightpro_nav_bl">
                                                    <DIV class="rightpro_nav_br">
                                                        <DIV class="rightpro_nav_tl">
                                                            <DIV class="rightpro_nav_tr" title="HOME INSURANCE">
                                                                 <span class="medium">HOME INSURANCE</span>
                                                            </DIV>
                                                        </DIV>
                                                    </DIV>
                                                </DIV>
                                            </DIV>
                                        </DIV>
                                    </DIV>
                                </div> 
                            <!-- 18/11/2005 -->                       

                             
                                
                            
                        
                        <div class="menuItems" style="margin:0;padding:0;border:0;">
                              <ol>
                                    <li>    
                                                                        
                                      
                                                
                                                    
                                                        <p style="padding-left:0px;padding-right:0px;">
                                                            <span class="medium"><script type=text/javascript>
tc_optimise('DL_HP_2_TopRight', '<a href=\"javascript:openNewWindowURL(\'000023\',\'link0301\');\" onclick="SiTrackTracer(\'/si/event/tracklink\',\'id=right/tc_dl_hp_topright/dl_hp_topright_dl_hp_topright_gnomestandard_may08.gif\');" class="bold-normal"><img alt=\"£1,000 worth of cover for items in the garden as standard\" src=\"/staticpages/images/tc_images/homepage/dl_hp_topright_gnomestandard_may08.gif\" width=\"203\" border=\"0\"></a><br>')
</script>
<noscript>
<a href="http://www.directline.com/insurance/home/startaction.do?entrypoint=0001&productline=0002" target="_blank"  class="bold-normal"><img alt="£1,000 worth of cover for items in the garden as standard" src="/staticpages/images/tc_images/homepage/dl_hp_topright_gnomestandard_may08.gif" width="203" border="0"></a><br>
</noscript> 
<script type=text/javascript>
tc_optimise('DL_HP_3_MidRight', '<a href=\"javascript:openNewWindowURL(\'000080\',\'link0600\');\" onclick="SiTrackTracer(\'/si/event/tracklink\',\'id=midright/tc_dl_hp_midright/dl_hp_3_midright_life_insurance_2_rdes.gif\');" class="bold-normal"><img alt=\"Life insurance from 20p a day" src=\"/staticpages/images/tc_images/homepage/dl_hp_3_midright_life_insurance_2_rdes.gif\" width=\"203\" border=\"0\"></a><br>')
</script>
<noscript>
<a href="http://www.directline.com/insurance/life/startaction.do?entrypoint=0001&productline=0011" target="_blank" class="bold-normal"><img alt="Life insurance from 20p a day" src="/staticpages/images/tc_images/homepage/dl_hp_3_midright_life_insurance_2_rdes.gif" width="203" border="0"></a><br>
</noscript></span>                        
                                                        </p>
                                                    
                                          
                                    
                                                                                                                        
                                    </li>
                              </ol>   
                        </div>
                             
                          
                    </div>


              </td></tr></table></td>
            
            </tr></table> 
         
       
           
            
                      
                <div id="footer"> 
             
           
         
           
           <!-- footer -->
           
            
                      
                <div id="footerSection1">
             
           
             
                 <div style="padding-left:20px;">
                     <ul>
                         
                         <li><span class="small"><A HREF="/call_us/call_us.htm" onclick="SiTrackTracer('/si/event/tracklink','id=footer/homepage/call_us_link');" class="bold-normal" title="Call us" target="_blank">Call us</A></span></li>
<li><span class="dl-footer-separater">|</span></li><li><span class="small"><A HREF="/sitemap/map.htm" onclick="SiTrackTracer('/si/event/tracklink','id=footer/homepage/get_quote_car_link');" class="bold-normal" title="Site map link" target="_self">Site map</A></span></li>
<li><span class="dl-footer-separater">|</span></li><li><span class="small"><A HREF="javascript:openBot('','');" onclick="SiTrackTracer('/si/event/tracklink','id=footer/homepage/ask_us_q_link');" class="bold-normal" title="Feedback link - opens in a new browser" >Ask us a question</A></span></li>
<li><span class="dl-footer-separater">|</span></li><li><span class="small"><A HREF="accessibility/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=footer/homepage/accessibility_link');" class="bold-normal" title="Accessibility link" target="_self">Accessibility</A></span></li>
<li><span class="dl-footer-separater">|</span></li><li><span class="small"><A HREF="/legal/security.htm" onclick="SiTrackTracer('/si/event/tracklink','id=footer/homepage/security_link');" class="bold-normal" title="Security and privacy link" target="_self">Security and Privacy</A></span></li>
<li><span class="dl-footer-separater">|</span></li><li><span class="small"><A HREF="legal/terms.htm" onclick="SiTrackTracer('/si/event/tracklink','id=footer/homepage/legal_link');" class="bold-normal" title="Legal link" target="_self">Legal</A></span></li>
<li><span class="dl-footer-separater">|</span></li><li><span class="small"><A HREF="/about_us/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=footer/homepage/about_us_link');" class="bold-normal" title="About us link - opens in a new browser" target="_self">About us</A></span></li>
<li><span class="dl-footer-separater">|</span></li><li style="float:none"><span class="small"><A HREF="javascript:openNewWindowURL('COPYRIGHT','link3007')" onclick="SiTrackTracer('/si/event/tracklink','id=footer/homepage/copyright_link');" class="bold-normal" title="RBS Insurance copyright link - opens in a new browser" target="_self">&copy; 1999-2008 RBS Insurance Services Ltd</A></span></li>

                         
                     </ul>
                 </div>
                 <div style="margin-top:6px;padding-left:20px;">
                     <span class="small">
                         General Insurance products are underwritten by Direct Line Insurance plc which is authorised and regulated by the Financial Services Authority. Registered office: 3 Edridge Road, Croydon, Surrey CR9 1AG. Registered in England and Wales no. 01810801. The Financial Services Authority's Register can be accessed through <A HREF="http://www.fsa.gov.uk/register" class="bold-normal" title="" target="_blank" onclick="SiTrackTracer('/si/event/tracklink','id=footer_disclaimer/homepage/fsa_link');">http://www.fsa.gov.uk/register</A>
                     </span>
                 </div>
             </div> 
               
                
                          
                    <div id="footerSection2"> 
                 
               
               
                
                          
                    <div id="footerPromotionalColumn1" style="padding-left:20px">
                 
               

                  
                 <div>
                     <h2 class="small">Our products and services</h2>
                     <span class="small"><a href="motor/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/welcome_motor_link');" class="bold-normal">Car Insurance</a> - Up to 10% discount for buying Direct Line Car Insurance online<br>

<a href="home/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/welcome_home_link');" class="bold-normal">Home Insurance</a> - Get up to 25% off Direct Line Home Insurance or Direct Line Home Insurance <br>Plus when you buy online<br>

<a href="life/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/welcome_life_link');" class="bold-normal">Life Insurance</a> - from just 20p per day, depending on age and personal situation<br>

<a href="travel/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/welcome_travel_link');" class="bold-normal">Travel Insurance</a> - Single trip, Annual or Discoverer policies to cover you on holiday<br>

<a href="/van/welcome.htm" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/welcome_van_link');" class="bold-normal">Van Insurance</a> - Get up to 10% online discount and 10% off each additional van<br>

<a href="/routeplanner/routeplanner.htm" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/route_planner_link');" class="bold-normal">Route planner</a> - Plan your journey, find a map or locate points of interest on your route<br>

<a href="sitemap/map.htm" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/sitemap_link');" class="bold-normal">More products</a> - View all of Direct Line's products including pet insurance, mortgages and life insurance<br></span>
                     <br>
                 </div>            
               </div> 
               
               
                
                          
                    <div id="footerPromotionalColumn2" style="padding:10px;padding-right:0px">
                 
               
               
                  
                 <div>
                     <h2 class="small"></h2>
                     <span class="small"></span><span class="small"><strong>Direct Line International</strong></span><span class="small"><br>

</span><span class="small"><strong><a href="/tracking/redirect/dl_international/dl_italy.htm" target="_blank" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/italy_link');" class="bold-normal">Italy</a></strong></span><span class="small">, <a href="/tracking/redirect/dl_international/dl_spain.htm" target="_blank" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/spain_link');" class="bold-normal"></span><span class="small"><strong>Spain</strong></span><span class="small"></a> and <a href="/tracking/redirect/dl_international/dl_germany.htm" target="_blank" onclick="SiTrackTracer('/si/event/tracklink','id=bottom/homepage/germany_link');" class="bold-normal"></span><span class="small"><strong>Germany</strong></span><span class="small"></a><br></span>
                 </div>
               </div>
              
               
                
                          
                     <div id="filler"> 
                     </div>
                 
               
               
             </div>        
         </div>  
      </div>

<br><br><br>

  
        <SCRIPT language="javascript">
             SiTrackTracer("/pagedescription.gif","pagedesc=Direct Line Homepage");
             SiTrackTracer("/brand.gif","brandname=Direct Line");             
        </SCRIPT>
   

</BODY>
</HTML>