Skip to content
Navigation Menu
{{ message }}
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml4_lightbox_open_image_new_window.php
More file actions
856 lines (457 loc) · 24.3 KB
/
Copy pathhtml4_lightbox_open_image_new_window.php
File metadata and controls
856 lines (457 loc) · 24.3 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
var elem = document.createElement('a');
elem.setAttribute('href',url);
elem.setAttribute('title',title);
elem.setAttribute('rel','sidebar');
elem.click();
}
else if(document.all)// ie
window.external.AddFavorite(url, title);
}
</script>
<title>Brochures, Brochure, design, marketing, print, advertising, poster, graphic design</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="keywords" content="Brochures, brochure, travel, vacations, vacation, design, tour, tours, marketing, print, advertising, poster, printing, graphic design">
<meta name="description" content="Brochures, brochure, travel, vacations, vacation, design, tour, tours, marketing, print, advertising, poster, printing, graphic design Web Page.">
<META NAME="GENERATOR" content="DelrayComputer.com">
<META NAME="abstract" CONTENT="Flash Design Web Site">
<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW">
<link rel="stylesheet" type="text/css" href="http://www.delraycomputer.com/css/css030508.css">
<link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />
<script src="js/prototype.js" type="text/javascript"></script>
<script src="js/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
<script src="js/lightbox.js" type="text/javascript"></script>
</head>
<body bgcolor="#000000" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#FFFFFF">
<tr>
<td class="banner1" onClick="document.location.href='http://www.delraycomputer.com';"> </a>
</td>
<td class="banner2" onClick="document.location.href='http://www.delraycomputer.com/delray_computer_request_a_quote.php';"> </a>
</td>
<td class="banner3" onClick="document.location.href='http://www.delraycomputer.com';"> </a>
</td>
</tr>
</table>
<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#FFFFFF">
<tr>
<td class="nav" colspan="3"><center>
<? include("topmiddlenav.php") ?></center>
</td>
</tr>
<tr>
<td class="greymiddle">
</td>
</tr>
<tr>
<td class="content">
<table width="100%" align="center" cellpadding="3" cellspacing="0" border="0">
<tr>
<td class="callnow" width="125" valign="top"><center>
<strong><i>CALL US NOW!!</i></strong><br>
<font size="+1">(352)245-9585</font><br><br>
<a class="contentlinkssmall" href="mailto:delraycomputer[at]yahoo.com">Email Us</a><br><br>
<strong>Delray Computer</strong><br>
<small>9195 SE 163rd Street<br>
Summerfield, FL 34491<br>
</small></center></td>
<td valign="top">
<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<h2>Brochure Design Samples</h2>
</td>
</tr>
<tr>
<td colspan="2">
<center><font size="-1" color="#FF0000">BELOW ARE SAMPLES OF BROCHURES THAT CAN BE ORDERED THROUGH US, PRINTED ON YOUR OFFICE PRINTER OR AT LOCAL PRINT SHOP IN YOUR AREA, OR ORDERED FROM ANY PRINTING COMPANY... PLEASE CLICK ON THE THUMBNAILS TO VIEW LARGER IMAGE...</font><br><br>
<hr width="50%">
<table width="500" cellpadding="10" cellspacing="0" border="0" align="center">
<!-- group 2 begins -->
<tr>
<td width="25%" valign="top">
<center>
<a href="images/139TimberLaneFront040808x60.jpg" rel="lightbox" title="1 Page Brochure Sample (front)"><img src="images/139TimberLaneFront040808.jpg" width="77" height="100" alt="" /><br>Front</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/139TimberLaneBack040808x600.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/139TimberLaneBack040808.jpg" width="77" height="100" alt="" /><br>Back</a>
</center>
</td>
<td width="50%" valign="top" colspan="2">
<strong>1 Page Brochure Front & Back</strong><br>Single Family Home for Sale Brochure with Property Feature Sheet, Property Photos and Property Specs on back.
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 3 begins -->
<tr>
<td width="50%" valign="top" colspan="2">
<strong>1 Page Brochure Front & Back</strong><br>Single Family Pool Home for Sale Brochure with Floor Plan and Property Photos on back.
</td>
<td width="25%" valign="top">
<center>
<a href="images/120SpringwaterFront062707x6.jpg" rel="lightbox" title="1 Page Brochure Sample (front)"><img src="images/120SpringwaterFront062707.jpg" width="77" height="100" alt="" /><br>Front</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/120SpringwaterBack062707x60.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/120SpringwaterBack062707.jpg" width="77" height="100" alt="" /><br>Back</a>
</center>
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 4 begins -->
<tr>
<td width="25%" valign="top">
<center>
<a href="images/100TaliaCirFront101306x600.jpg" rel="lightbox" title="1 Page Brochure Sample (front)"><img src="images/100TaliaCirFront101306.jpg" width="77" height="100" alt="" /><br>Front</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/100TaliaCirBack101306x600.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/100TaliaCirBack101306.jpg" width="77" height="100" alt="" /><br>Back</a>
</center>
</td>
<td width="50%" valign="top" colspan="2">
<strong>1 Page Brochure Front & Back</strong><br>Townhome for Sale Brochure with MLS Data and Property Feature Sheet with MLS and Property Specs on back.
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 5 begins -->
<tr>
<td width="50%" valign="top" colspan="2">
<strong>1 Page Brochure Front & Back</strong><br>Single Family Home for Sale Brochure with MLS Feature Sheet on back.
</td>
<td width="25%" valign="top">
<center>
<a href="images/154EagletonBrocFront040506x.jpg" rel="lightbox" title="1 Page Brochure Sample (front)"><img src="images/154EagletonBrocFront040506.jpg" width="77" height="100" alt="" /><br>Front</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/154EagletonBrocBack040506x6.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/154EagletonBrocBack040506.jpg" width="77" height="100" alt="" /><br>Back</a>
</center>
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 6 begins -->
<tr>
<td width="25%" valign="top">
<center>
<a href="images/241BravadoFront041207x600.jpg" rel="lightbox" title="1 Page Brochure Sample (front)"><img src="images/241BravadoFront041207.jpg" width="77" height="100" alt="" /><br>Front</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/241BravadoBack041707x600.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/241BravadoBack041707.jpg" width="77" height="100" alt="" /><br>Back</a>
</center>
</td>
<td width="50%" valign="top" colspan="2">
<strong>1 Page Brochure Front & Back</strong><br>Single Family for Sale Brochure with Property Feature Sheet, Property Photos, and Property Specs on back.
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 7 begins -->
<tr>
<td width="50%" valign="top" colspan="2">
<strong>1 Page Brochure Front & Back</strong><br>Single Family Beach Town Home for Sale Brochure with Property Feature Sheet, Property Photos, and Property Specs on back.
</td>
<td width="25%" valign="top">
<center>
<a href="images/313AlacanteFront061306x600.jpg" rel="lightbox" title="1 Page Brochure Sample (front)"><img src="images/313AlacanteFront061306.jpg" width="77" height="100" alt="" /><br>Front</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/313AlacanteBack061306x600.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/313AlacanteBack061306.jpg" width="77" height="100" alt="" /><br>Back</a>
</center>
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 8 begins -->
<tr>
<td width="25%" valign="top">
<center>
<a href="images/356Golfview1106Front122706x.jpg" rel="lightbox" title="1 Page Brochure Sample (front)"><img src="images/356Golfview1106Front122706.jpg" width="77" height="100" alt="" /><br>Front</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/356Golfview1106Back122606x6.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/356Golfview1106Back122606.jpg" width="77" height="100" alt="" /><br>Back</a>
</center>
</td>
<td width="50%" valign="top" colspan="2">
<strong>1 Page Brochure Front & Back</strong><br>Intracoastal Condo for Sale Brochure with MLS Property Feature Sheet and Property Photos on back.
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 9 begins -->
<tr>
<td width="50%" valign="top" colspan="2">
<strong>1 Page Brochure Front & Back</strong><br>Waterfront Condo for Sale Brochure with MLS Property Feature Sheet on back.
</td>
<td width="25%" valign="top">
<center>
<a href="images/356GolfviewRdBrocFront10280.jpg" rel="lightbox" title="1 Page Brochure Sample (front)"><img src="images/356GolfviewRdBrocFront10280z.jpg" width="77" height="100" alt="" /><br>Front</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/356GolfviewRdBrocBack102808.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/356GolfviewRdBrocBack102808s.jpg" width="77" height="100" alt="" /><br>Back</a>
</center>
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 10 (11x17) begins -->
<tr>
<td width="25%" valign="top">
<center>
<a href="images/8762MarlamoorBrocFrontBack0.jpg" rel="lightbox" title="4 Page Brochure Sample (front & back)"><img src="images/8762MarlamoorBrocFrontBack0z.jpg" width="154" height="100" alt="" /><br>Front & Back</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/8762MarlamoorBrocInside0218.jpg" rel="lightbox" title="4 Page Brochure Sample (inside)"><img src="images/8762MarlamoorBrocInside0218z.jpg" width="155" height="100" alt="" /><br>Inside</a>
</center>
</td>
<td width="50%" valign="top" colspan="2">
<strong>4 Page Brochure Front/Back/Inside</strong><br>Estate Pool Home on 1 Acre for Sale Brochure with Property Specs and Property Photos on back.
</td></tr><tr><td colspan="4"><hr></td>
</tr>
<!-- group 11 begins -->
<tr>
<td width="50%" valign="top" colspan="2">
<strong>4 Page Brochure Front/Back/Inside</strong><br>Waterfront Estate Pool Home on 1 Acre for Sale Brochure with Floor Plan and Property Photos on back.
</td>
<td width="25%" valign="top">
<center>
<a href="images/11583BuckhavenFrontBack0125.jpg" rel="lightbox" title="4 Page Brochure Sample (front & back)"><img src="images/11583BuckhavenFrontBack0125z.jpg" width="155" height="100" alt="" /><br>Front & Back</a>
</center>
</td>
<td width="25%" valign="top">
<center>
<a href="images/11583BuckhavenInside012507x.jpg" rel="lightbox" title="1 Page Brochure Sample (back)"><img src="images/11583BuckhavenInside012507z.jpg" width="155" height="100" alt="" /><br>Back</a>
</center>
</td>
</tr>
</table>
<hr>
<center><b><font color="#FF0000">NEW!!</font></b> We can take floorplans and make them into files for use in brochures, brochures, and for use on web pages.</center>
<hr>
<center>Ask about SAMPLES OF FLOORPLAN CONVERSIONS TO DIGITAL FILES...</center>
<img src="images/we_accept_credit_cards.jpg" width="184" height="34" alt="We Accept Most Major Credit Cards" border="0"><br>
</td>
</tr>
</table>
<hr>
<center>
<h2>READY TO GET STARTED??</h2>
Please call (352)245-9585 or see below to order online...<br><br>
</center>
<hr>
<center><h2><a name="brochureordering"></a>Brochure Design Prices and Online Ordering</h2></center>
<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0">
<tr>
<td colspan="3">
<center>
<img src="images/brochure_prices_one_page.jpg" width="150" height="194" alt="" border="1"><br>1 PAGE BROCHURE DESIGN
</center>
</td>
</tr>
<tr style='height:.3in'>
<td width=295 style='width:221.4pt;border:solid windowtext 1.0pt;padding:
0in 5.4pt 0in 5.4pt;height:.3in'>
<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Courier New", "Courier New", Courier, monospace'>1 Page Brochure (front only)</span></b></p>
</td>
<td width=295 style='width:221.4pt;border:solid windowtext 1.0pt;border-left:
none;padding:0in 5.4pt 0in 5.4pt;height:.3in'>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New", "Courier New", Courier, monospace'><font color="#FF0000"> $49.00*</font></span></p>
</td><td style='width:121.4pt;border:solid windowtext 1.0pt;border-left:
solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:.3in'><br><center>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="2139814">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</center></td>
</tr>
<tr>
<td colspan="3">
<center>
*This price includes front only with 2 free revisions if needed. Revision #3 and over are $15.00/each.
<hr>
</center>
</td>
</tr>
<tr>
<td colspan="3">
<center>
<img src="images/brochure_prices_two_pages_f.jpg" width="150" height="194" alt="" border="1"><img src="images/brochure_prices_two_pages_b.jpg" width="150" height="194" alt="" border="1"><br>2 PAGE BROCHURE DESIGN FRONT AND BACK
</center>
</td>
</tr>
<tr style='height:.3in'>
<td width=295 style='width:221.4pt;border:solid windowtext 1.0pt;padding:
0in 5.4pt 0in 5.4pt;height:.3in'>
<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Courier New", "Courier New", Courier, monospace'>2 Page Brochure (front and back)</span></b></p>
</td>
<td width=295 style='width:221.4pt;border:solid windowtext 1.0pt;border-left:
none;padding:0in 5.4pt 0in 5.4pt;height:.3in'>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New", "Courier New", Courier, monospace'><font color="#FF0000"> $69.00*</font></span></p>
</td><td style='width:121.4pt;border:solid windowtext 1.0pt;border-left:
solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:.3in'><br><center>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="2139828">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</center></td>
</tr>
<tr>
<td colspan="3">
<center>
*This price includes front and back with 2 free revisions if needed. Revision #3 and over are $15.00/each.
<hr>
</center>
</td>
</tr>
<tr>
<td colspan="3">
<center>
<img src="images/brochure_prices_four_pages.jpg" width="165" height="239" alt="" border="0"><br>4 PAGE BROCHURE DESIGN FRONT, BACK, and INSIDE
</center>
</td>
</tr>
<tr style='height:.3in'>
<td width=295 style='width:221.4pt;border:solid windowtext 1.0pt;padding:
0in 5.4pt 0in 5.4pt;height:.3in'>
<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Courier New", "Courier New", Courier, monospace'>4 Page Brochure</span></b></p>
</td>
<td width=295 style='width:221.4pt;border:solid windowtext 1.0pt;border-left:
none;padding:0in 5.4pt 0in 5.4pt;height:.3in'>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New", "Courier New", Courier, monospace'><font color="#FF0000"> $99.00* <strong><font color="#0000FF"> </font></strong></font></span></p>
</td><td style='width:121.4pt;border:solid windowtext 1.0pt;border-left:
solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;height:.3in'><br><center>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="2139839">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</center></td>
</tr>
<tr>
<td colspan="3">
<center>
*This price includes front and back, 11" x 17" folded in half, with 2 free revisions if needed. Revision #3 and over are $15.00/each.
<hr>
</center>
</td>
</tr>
</table>
<center>
<script src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/translatemypage.xml&up_source_language=en&w=160&h=60&title=&border=&output=js"></script>
</center>
<br><br>
<center>
Delray Computer<br>
9195 SE 163 Street<br>
Summerfield, FL 34491<br>
<font size="+1">352-245-9585</font><br>
</center>
<hr>
</center>
<tr>
<td colspan="2" class="copyright">
<br>
<strong><a class="copyright" href="http://delraycomputer.com/about_delray_computer.php">About</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/brochures.php">Brochures</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/contact_delray_computer.php">Contact</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/delray_computer_testimonials.php">Testimonials</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/references.php">References</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/flash_animation.php">Flash</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/graphic_design.php">Graphic Design</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/links_and_resources.php">Links & Resources</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/computer_services/index.php">Onsite Computer Services</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/postcards.php">Postcards</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/web_design_price_sheet.php">Prices</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/real_estate/index.php">Real Estate Computer Services</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/sell_web_sites.php">Sell Web Sites</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/real_estate_virtual_tours.php">Virtual Tours</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/web_design/index.php">Web Design</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/webmasters_resources.php">Webmaster Resources</a></strong> <img src="images/bottomnavbg.jpg" width="2" height="30" border="0">
<strong><a class="copyright" href="http://delraycomputer.com/index.php">Home</a></strong><br><br>
© 2009 Delray Computer. All Rights Reserved. <a class="copyright" href="disclaimer.php">Legal Disclaimer</a>. <a class="copyright" href="site_map.php">Site Map</a>.
<br>
<center>
<font color="#FFFFFF">
<script language="JavaScript">
<!-- Hide JavaScript...
var LastUpdated = document.lastModified;
document.writeln ("This page was last updated " + LastUpdated);
// End Hiding -->
</script>
</center>
</font>
<center>
<strong>
<a class="copyright" href="javascript:bookmarksite('Delray Computer', 'http://www.delraycomputer.com')">Bookmark this site!</a>
</strong>
</center>
<br>
<center>
<strong>
<font color="#FFFFFF">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original: David Henry (davidputhenry@yahoo.com) -->
<!-- Web Site: http://www.davidphenry.com --> <SCRIPT TYPE="text/javascript"><!--
var SubjectLine='Take a look at this web page I found, '+top.document.title; var BodyText='You can see this page at: '+top.location.href;
var Message='Click<A CLASS=copyright HREF="mailto:?SUBJECT='+escape(SubjectLine)+'&BODY='+escape(BodyText)+'" OnMouseOver="status=\'Envoyer cette page à vos amis\'; return true;" TITLE="Send your friends e-mail about this page">HERE<\/A> to E-mail this page to a friend.';
var MessageIE='Click<A CLASS=copyright HREF="mailto:?SUBJECT='+(SubjectLine)+'&BODY='+(BodyText)+'" OnMouseOver="status=\'Envoyer cette page à vos amis\'; return true;" TITLE="Send your friends e-mail about this page">HERE<\/A> to E-mail this page to a friend.';
if(document.all) { document.write(MessageIE); }
else { document.write(Message); }
//--></SCRIPT>
</font>
</strong>
</center>
<script type="text/javascript">
/***********************************************
* Easy Email Scrambler script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
var maildivider="[at]" //enter divider you use to divide your email address strings
for (i=0; i<=(document.links.length-1); i++){
if (document.links[i].href.indexOf(maildivider)!=-1)
document.links[i].href=document.links[i].href.split(maildivider)[0]+"@"+document.links[i].href.split(maildivider)[1]
}
</script>
</td>
</tr>
</td>
</tr>
</table>
<script type="text/javascript">
/***********************************************
* Easy Email Scrambler script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
var maildivider="[at]" //enter divider you use to divide your email address strings
for (i=0; i<=(document.links.length-1); i++){
if (document.links[i].href.indexOf(maildivider)!=-1)
document.links[i].href=document.links[i].href.split(maildivider)[0]+"@"+document.links[i].href.split(maildivider)[1]
}
</script>
</body>
</html>
You can’t perform that action at this time.
