File: home01.html

package info (click to toggle)
iceweasel 2.0.0.19-0etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 298,784 kB
  • ctags: 317,912
  • sloc: cpp: 1,796,902; ansic: 987,677; xml: 109,036; makefile: 47,777; asm: 35,201; perl: 26,983; sh: 20,879; cs: 6,232; java: 5,513; python: 3,249; pascal: 459; lex: 306; php: 244; csh: 132; objc: 97; yacc: 79; ada: 49; awk: 14; sql: 4; sed: 4
file content (976 lines) | stat: -rw-r--r-- 28,737 bytes parent folder | download | duplicates (12)
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
<!--Commented code available in commented_code/index4.html-->
<HTML>
<HEAD>
<TITLE>Welcome to Netscape</TITLE>
<META NAME="Producer" CONTENT="bahr">


<SCRIPT LANGUAGE="JavaScript1.1">
<!--
window.onerror=null;
//-->
</SCRIPT>

<SCRIPT LANGUAGE='JavaScript1.2'>
<!--
window.document.name='indexpage';
G9=true;
H3=true;
d1=1;

e1=285;





I0=null;


//-->
</SCRIPT>



<SCRIPT LANGUAGE="JavaScript1.2">
<!--
d2='ad';
d3=7;

d4=16;
d5=12;
d6=1000;
d7=0;
d8=14;

d9=26;
e0=13;
e2=e1+e0;
C3=3;
C4=5;
C5=12;
C6=26;
C7=261;
C8=7;
C9=282;
D0=16;
coneweek=7*24*60*60*1000;


var ad=null;
var netscapehome=null;
var pf=null;

e3=new Array;
e4=new Array;
e5=new Array;
e6=new Array;

e7=6;

e8=window.innerWidth-d4;
e9=window.innerHeight-d5;

f0=new Array(d1);
ncard=new Array(d1);



f1=null;

f2=false;
f3=false;

var f4;
var f5;
var f6;

function f7(card){with(card){f8.zIndex=zorder;
    ubar.zIndex=zorder;
    utab.zIndex=zorder;
    tab.zIndex=zorder;}}

function f9(g0,g1){g0.zorder=g1.zorder+1;
   g0.f8.moveAbove(g1.tab);
   g0.ubar.moveAbove(g0.f8);
   g0.utab.moveAbove(g0.ubar);
   g0.tab.moveAbove(g0.utab);
   f7(g0);}

function g2(){ncard[f0[0]].f8.top=e2;
   ncard[f0[0]].utab.left=e8+ncard[f0[0]].f8.clip.width-ncard[f0[0]].utab.clip.width;
   g3(f0[0]);

   for(i=1; i<d1; i++){ncard[f0[i]].f8.top=ncard[f0[i-1]].f8.top+d7+ncard[f0[i-1]].tab.clip.height;
     ncard[f0[i]].utab.left=e8+ncard[f0[i]].f8.clip.width-ncard[f0[i]].utab.clip.width; 
     g3(f0[i]);}
   ncard[f0[d1-1]].zorder=0;



        if(f1==null){for(i=d1-1; i>0; i--)for(j=i-1; j>=0; j--)f9(ncard[f0[j]],ncard[f0[i]]);}}

function g3(f0){ncard[f0].f8.left=e8;
	ncard[f0].f8.visibility="show";
        ncard[f0].tab.top=ncard[f0].f8.top-e0;
	ncard[f0].tab.left=e8-ncard[f0].tab.clip.width;
	ncard[f0].tab.visibility="show";
        ncard[f0].utab.top=ncard[f0].f8.top-d9;
	ncard[f0].utab.visibility="show";
        ncard[f0].ubar.top=ncard[f0].f8.top-e0;
	ncard[f0].ubar.left=ncard[f0].f8.left;
        ncard[f0].ubar.visibility="show";}

function g4(Layer,g5,g6,g7,g8,g9){Layer.left=g5;
	Layer.top=g6;
	Layer.visibility="show";
	h0=(g7-g5)/e7;
	h1=(g8-g6)/e7;
	e4[Layer.name]=1;
        h2=25;
        if(g5 < g7)h2=0;
	e3[Layer.name]=setTimeout(h3,h2,Layer,h0,h1,g7,g8);}

function h3(Layer,h0,h1,g7,g8){var h4=Layer.left > g7;


	if(e4[Layer.name] < e7&&Layer.left > g7){if(Layer.name!=d2){ncard[Layer.name].tab.moveBy(h0,h1);
                   ncard[Layer.name].ubar.moveBy(h0,h1);
                   ncard[Layer.name].utab.moveBy(h0,h1);}
                Layer.moveBy(h0,h1);
		e4[Layer.name]+=1;
                clearTimeout(e3[Layer.name]);
		e3[Layer.name]=setTimeout(h3,25,Layer,h0,h1,g7,g8);}
	else{clearTimeout(e3[Layer.name]);
		Layer.moveTo(g7,g8);
                if(Layer.name!=d2){with(ncard[Layer.name]){tab.moveTo(g7-tab.clip.width,g8-e0);
                    utab.moveTo(g7+Layer.clip.width-utab.clip.width,g8-d9);
                    ubar.moveTo(g7,g8-e0);}}
                h5();}}

function h6(){if(ad.left!=e8-ad.clip.width){g4(ad,ad.left,ad.top,e8-ad.clip.width,ad.top,false);
        f3=true;}
     else{g4(ad,ad.left,ad.top,e8-d3,ad.top,false);
        f3=false;}}

var h7,h8;
h9=null;

function i0(e,name){h7=e.pageX;
   h8=e.pageY;

   with(ncard[name])if(h7>=tab.left&&h7<=tab.left+tab.clip.width&&h8>=tab.top&&h8<=tab.top+tab.clip.height||h7>=ubar.left&&h7<=ubar.left+ubar.clip.width&&h8>=ubar.top&&h8<=ubar.top+ubar.clip.height||h7>=utab.left&&h7<=utab.left+utab.clip.width&&h8>=utab.top&&h8<=utab.top+utab.clip.height){h9=ncard[name];

	window.captureEvents(Event.MOUSEMOVE);	
	return false;}
  return false;}

function i1(e){var X=e.pageX-h7;
   var Y=e.pageY-h8;



   if(h9){if(h9.tab.left+X<=0)X=-h9.tab.left;
     if(h9.tab.left+X>=e8-h9.tab.clip.width)X=e8-h9.tab.left-h9.tab.clip.width ;
     if(h9.utab.top+Y<=0)Y=-h9.utab.top;
     if(h9.f8.top+Y+h9.f8.clip.height > d6)Y=d6-h9.f8.top-h9.f8.clip.height;

     h9.tab.moveBy(X,Y);
     h9.f8.moveBy(X,Y);
     h9.ubar.moveBy(X,Y);
     h9.utab.moveBy(X,Y);}
   h7=e.pageX;
   h8=e.pageY;}

function i2(e){window.releaseEvents(Event.MOUSEMOVE);
        h9=null;
        h5();
        return false;}

function movecard(i3,i4,i5){i6=i4-ncard[i3].f8.left;
   i7=i5-ncard[i3].f8.top;
   ncard[i3].tab.moveBy(i6,i7);
   ncard[i3].f8.moveBy(i6,i7);
   ncard[i3].ubar.moveBy(i6,i7);
   ncard[i3].utab.moveBy(i6,i7);}

function i8(name,value,i9){document.cookie=name+"="+escape(value)+((i9==null)? "" :("; expires="+i9.toGMTString()));}
function j0(j1){var search=j1+"=";
   var cookie=null;
   if(document.cookie.length > 0){j2=document.cookie.indexOf(search);
     if(j2!=-1){j2+=search.length;
                         
       j3=document.cookie.indexOf(";",j2);
                         
       if(j3==-1)j3=document.cookie.length;
       return unescape(document.cookie.substring(j2,j3));}}
   return cookie;}

function h5(){if(G9){j4=f3+'^'+ad.left+'^'+ad.top+'^'+ad.zIndex;
   for(i=0;i<d1;i++){with(ncard[f0[i]]){j4+=':'+j5+'^'+f8.left+'^'+f8.top+'^'+zorder;}}
   exp=new Date();
   j4+='!'+exp.getTime();
   oneWeek=exp.getTime()+coneweek;

   exp.setTime(oneWeek);
   i8('netscape_home',j4,exp);}}
function j6(e){}

function j7(e){var j8;
   j9=e8;
   k0=e9;


  if(f2){e8=e.x;
     e9=e.y;
     if(pf=="Unix"){e8-=d4;
       e9-=d5;}
     if(d1 > 0)d=e9-e2-ad.clip.height-ncard[f0[0]].tab.clip.height*d1;
     else
       d=0;
     if(d > 0&&d1 > 1)d7=d/d1;
     else if(d<=0)d7=d/d1;

     d7=d7>2||d7<0?d7:2;

     if(f3)ad.moveTo(ad.clip.width<e8?e8-ad.clip.width:0,e9-ad.clip.height);
     else
        ad.moveTo(e8-d3,e9-ad.clip.height);

     for(i=0; i<d1; i++){if(!ncard[f0[i]].j5&&ncard[f0[i]].f8.left<=j9){k1=e2;
         for(j=i; j>0; j--)k1+=ncard[f0[j-1]].tab.clip.height+d7;
         movecard(f0[i],e8,k1);}}

     
     
     
     for(i=0; i<d1; i++){with(ncard[f0[i]]){f8.zIndex=zorder;
         tab.zIndex=zorder;
         utab.zIndex=zorder;
         ubar.zIndex=zorder;}}
     ad.zIndex=99;
     h5();}





return true;}

D1=0;
D2=1;
D3=-1;

function D4(e,card,x,y){with(card){if((x>=ubar.left&&x<=ubar.left+ubar.clip.width&&y>=ubar.top&&y<=ubar.top+ubar.clip.height)||(x>=tab.left&&x<=tab.left+tab.clip.width&&y>=tab.top&&y<=tab.top+tab.clip.height)||(x>=utab.left&&x<=utab.left+utab.clip.width&&y>=utab.top&&y<=utab.top+utab.clip.height)){if((x>=tab.left+C3&&x<=tab.left+C5&&y>=tab.top+C4&&y<=tab.top+C6)||(x>=utab.left+C7&&x<=utab.left+C9&&y>=utab.top+C8&&y<=utab.top+D0)){return D3;} else{i0(e,f1.name);
           window.releaseEvents(Event.MOUSEDOWN);
           return D2;}}
     else
       return D1;}}

function k2(e){var x=e.pageX,y=e.pageY,k3=false;
   var k4,k5=-1;
   

   if(f1!=null){D5=D4(e,ncard[f1.name],x,y);
     if(D5==D2)return false;
     else if(D5==D3)return true;}
   if(f3)if(x>=ad.left&&x<=ad.left+ad.clip.width&&y>=ad.top&&y<=ad.top+ad.clip.height)return true;






   for(i=0; i<d1; i++){with(ncard[f0[i]]){if((x>=f8.left&&x<=f8.left+f8.clip.width&&y>=f8.top-e0&&y<=f8.top+f8.clip.height)||(x>=tab.left&&x<=tab.left+tab.clip.width&&y>=tab.top&&y<=tab.top+tab.clip.height)||(x>=utab.left&&x<=utab.left+utab.clip.width&&y>=utab.top&&y<=utab.top+utab.clip.height)){k3=true;
          if(k5==-1)k5=i;
          else
             if(zorder>=ncard[f0[k5]].zorder)k5=i;}}}
   if(k3){with(ncard[f0[k5]]){if(!j5){if(f1!=null&&f1.name!=f0[k5]){f9(ncard[f0[k5]],ncard[f1.name]);
            if(zorder > d1){zorder-=1;
              f7(ncard[f0[k5]]);
              for(i=0; i<d1; i++)if(ncard[f0[i]].zorder>=zorder&&i!=k5&&ncard[f0[i]].zorder > 0){ncard[f0[i]].zorder-=1;
                 f7(ncard[f0[i]]);}}}
          else if(f1==null){for(i=0; i<d1; i++)if(ncard[f0[i]].zorder>=zorder&&i!=k5)f9(ncard[f0[k5]],ncard[f0[i]]);}}
       else{if(f1.name!=f0[k5]){ncard[f1.name].zorder-=1;
             f7(ncard[f1.name]);
             f9(ncard[f0[k5]],ncard[f1.name]);
             for(i=0; i<d1; i++)if(ncard[f0[i]].zorder > ncard[f0[k5]].zorder&&ncard[f0[i]].zorder > 0){ncard[f0[i]].zorder=ncard[f0[k5]].zorder-1;
                 f7(ncard[f0[i]]);}}}
       h5();
       f1=ncard[f0[k5]].f8;
       D5=D4(e,ncard[f0[k5]],x,y);
       if(D5==D2)return false;
       else if(D5==D3)return true;}}

   window.releaseEvents(Event.MOUSEDOWN);
   return true;}

function k6(e){window.captureEvents(Event.MOUSEDOWN);
   if(h9!=null)i2(e);}

function k7(Card,g9){if(g9&&f1!=null&&Layer!=f1)if(Layer.name!=d2)f9(ncard[Card.name],ncard[f1.name]);

	g4(Card,Card.left,Card.top,Math.max(d8,e8-d8-Card.clip.width),Card.top,g9);

	ncard[Card.name].j5=true;
        f1=Card;}

function k8(k9){Card=ncard[k9];
   with(Card){if(j5){k1=e2;
           for(i=0; i<d1; i++){if(f0[i]==k9)break;
             k1+=d7;
             k1+=ncard[f0[i]].tab.clip.height;}
           g4(Card.f8,Card.f8.left,Card.f8.top,e8,k1,false);

           j5=false;}
	else{k7(f8,false);}}}

function card(f8,tab,utab,ubar,j5,zorder){this.f8=f8;
   this.tab=tab;
   this.utab=utab;
   this.ubar=ubar;
   this.j5=j5;
   this.zorder=zorder;}

function l0(i,l1){ncard[l1]=new card(netscapehome.document.layers[l1],netscapehome.document.layers[l1+'tab'],netscapehome.document.layers[l1+'utab'],netscapehome.document.layers[l1+'ubar'],false,0);
   if(i > 0){movecard(l1,ncard[l1].f8.left,ncard[l1].f8.top+d7);}
   f0[i]=l1;}

l2=null;
D6=null;
l8=null;

function cleardelays(){clearTimeout(l2);
   clearTimeout(D6);
   clearTimeout(l8);}

function StartPage(){netscapehome=document.layers['netscapehome'];
  ad=document.layers['netscapehome'].document.layers[d2];




   if(navigator.userAgent.indexOf("X11")!=-1)pf="Unix";

   ad.left=e8;

   var cookie=null;
   if(G9){cookie=j0('netscape_home');
     if(cookie!=null){cpart=cookie.split('!');
       cookie=cpart[0];
       if(I0!=null){newd=new Date(I0);
         if(parseFloat(cpart[1])< newd.getTime())cookie=null;}}}

   if(cookie==null){l2=setTimeout(g4,10,ad,e8,e9-ad.clip.height,e8-ad.clip.width,e9-ad.clip.height,true);
     f3=true;}
   else{cstate=cookie.split(':');

     val=cstate[0].split('^');
     ad.visibility="show";
     if(val[0]=='true'){l5=e8-ad.clip.width;
       ad.moveTo(l5,e9-ad.clip.height);}
     else{l2=setTimeout(g4,10,ad,e8,e9-ad.clip.height,e8-ad.clip.width,e9-ad.clip.height,true);}
     f3=true;}
   
   if(d1 > 0){d=e9-e2-ad.clip.height-document.layers['netscapehome'].document.layers['card1tab'].clip.height*d1;
     d7=d/d1;
     d7=(d7>2||d7<0?d7:2);

     for(i=1;i<=d1;i++){l0(i-1,'card'+i);}
     g2();}

   if(cookie==null){if(H3){D6=setTimeout(k7,800,ncard['card1'].f8,true);
        if(d1 > 1)D6=setTimeout(k7,1900,ncard['card2'].f8,true);
        l8=setTimeout(cleardelays,5000);}
     if((top.frames.length==0)&&(navigator.userAgent.indexOf('Win16')==-1)){setTimeout("document.layers['menu'].show_menus();",3500)};}
   else{for(i=0;i<d1;i++){val=cstate[i+1].split('^');
       with(ncard[f0[i]]){zorder=parseInt(val[3]);
         l5=parseInt(val[1]);
         k1=parseInt(val[2]);
         if(val[0]=='true')ncard[f0[i]].j5=true;
         else{ncard[f0[i]].j5=false;
           
           
           if(l5>e8)l5=e8;}
         f8.moveTo(l5,k1);
         tab.moveTo(l5-tab.clip.width,k1-e0);
         utab.moveTo(l5+f8.clip.width-utab.clip.width,k1-d9);
         ubar.moveTo(l5,k1-e0);}}
     if(d1 > 1){if(ncard['card1'].zorder > ncard['card2'].zorder){f9(ncard['card1'],ncard['card2']);
         f1=ncard['card1'].f8;}
       else{f9(ncard['card2'],ncard['card1']);
         f1=ncard['card2'].f8;}} else
         f1=ncard['card1'].f8;

     if((top.frames.length==0)&&(navigator.userAgent.indexOf('Win16')==-1))document.layers['menu'].show_menus();}
   f2=true;

window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN|Event.RESIZE);


window.onmousedown=k2;


window.onmouseup=k6;

window.onmousemove=i1;

window.onresize=j7; 
window.onunload=j6;


document.close();}


//-->
</SCRIPT>



<SCRIPT LANGUAGE="JavaScript1.2">
<!--
H5='/styles/win4.js';
if(navigator.appVersion.indexOf("Win")!=-1){H5='/styles/win4.js';}
else if(navigator.appVersion.indexOf("Macintosh")!=-1){H5='/styles/mac4.js';}
else if(navigator.appVersion.indexOf("X11")!=-1){if(navigator.appVersion.indexOf("IRIX")!=-1){H5='/styles/win4.js';}
     else{H5='/styles/unix4.js';}}

//-->
</SCRIPT>

<!-- LINK REL="STYLESHEET" TYPE="text/javascript" HREF="&{H5};" -->


<NOSCRIPT><LAYER TOP = 0 LEFT = 0 NAME="noscripthome" CLIP="0,0,1280,1000" BGCOLOR=#FFFFFF Z-INDEX=999 src="/noscript.html"></NOSCRIPT>

</HEAD>

<BODY BGCOLOR="#FFFFFF" LINK="#0000ff" VLINK="#ff0000" ALINK="#ff0000" TEXT="#000000" onLoad="if(navigator.userAgent.indexOf('Mozilla/4')!=-1){if((top.frames.length==0)&&(navigator.userAgent.indexOf('Win16')==-1)){document.layers['menu'].init_menu();} if(window.document.name=='indexpage'){setTimeout('javascript:StartPage();',200);return false;}}">

<LAYER TOP=0 LEFT=0 NAME="netscapehome" Z-INDEX=0 WIDTH="&{innerWidth};">





<!-- BRANDING LAYER -->
<LAYER TOP=0 LEFT=0 NAME="netscape"  VISIBILITY="SHOW">

<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD COLSPAN=2>
<A HREF="/maps/banners/netscape_c0.map"><IMG SRC="/images/banners/netscape_c0.gif" ALT="Welcome to Netscape - Navigation Banner" WIDTH=612 HEIGHT=100 BORDER=0 USEMAP="#navmap" ISMAP></A></DIV>
<MAP NAME="navmap">
<AREA SHAPE=RECT COORDS="130,84,184,99" HREF="/company/index.html?cp=bcom4se">
<AREA SHAPE=RECT COORDS="195,84,248,99" HREF="/products/index.html?cp=bpro4se">
<AREA SHAPE=RECT COORDS="256,84,318,99" HREF="/download/index.html?cp=bdow4se">
<AREA SHAPE=RECT COORDS="323,84,373,99" HREF="/support/index.html?cp=bsup4se">
<AREA SHAPE=RECT COORDS="382,84,438,99" HREF="/solutions/index.html?cp=bsol4se">
<AREA SHAPE=RECT COORDS="448,84,513,99" HREF="http://developer.netscape.com/index4_home.html">
<AREA SHAPE=RECT COORDS="523,84,572,99" HREF="/partners/index.html?cp=bpar4se">

</MAP>
<DIV ALIGN=center>
</TD>
</TR>

<TR>
<TD WIDTH=150>
<BR>
</TD>

<TD WIDTH=454>

<TABLE BORDER=0>
	<TR>
		<TD WIDTH=30>
		</TD>
		<TD COLSPAN=2 WIDHT=450 ALIGN=LEFT>
		<FONT FACE="Arial,Helvetica" SIZE=-2 COLOR="#ff0000">September 22, 1997</FONT>
		</TD>
	</TR>
	<TR>
		<TD WIDTH=30>
		</TD>

		<TD COLSPAN=2 WIDTH=450 ALIGN=LEFT>

		<FONT FACE="Arial,Helvetica" COLOR="#000066" SIZE=+2>

		<!-- HEADLINE -->
		<NOBR>
		<B>

Publishing Suite Now Available

		</B>
		</NOBR>

		</FONT>

		<SPACER TYPE="Vertical" SIZE="10">

		</TD>
	</TR>

	<TR>
		<TD WIDTH=30>&nbsp;
		</TD>

		<TD COLSPAN=2 WIDTH=378>
		<FONT FACE="Arial,Helvetica">


		<!-- Flash #1 -->

		<A HREF="/comprod/products/communicator/product_family/comm_retailps.html?cp=flh24se">Netscape Publishing Suite</A> - the all-in-one solution for creating and publishing web sites - is now available in <A HREF="http://dev1.netscape.com/directory/retailers.html?main=true">retail stores</A> nationwide. 

		</FONT>
		</TD>
	
	</TR>
	<TR>
		<TD COLSPAN=2 ALIGN=RIGHT VALIGN=TOP WIDTH=450>
		<BR>
		<A HREF="http://www.abcnews.com"><IMG SRC="/images/abcnews_4.gif" WIDTH=360 HEIGHT=32 BORDER=0 ALT="ABC News"></A>
		</TD>
	</TR>

	<TR>
		<TD WIDTH=64>
		</TD>

		<TD WIDTH=378>

		<!-- Flash #2 -->
		<FONT FACE="Arial,Helvetica" SIZE=-1>

Netscape <A HREF="/newsref/pr/newsrelease494.html?cp=flh34se">delivers</A> the new CommerceXpert family of Internet commerce products developed by <A HREF="http://www.actracorp.com/">Actra</A> - including PublishingXpert 2.0, SellerXpert, and ECXpert.


		</FONT>
		<BR>
		<IMG SRC="/images/rule_grn.gif" WIDTH=445 HEIGHT=1 VSPACE=6 BORDER=0 ALT="">

		<FONT FACE="Arial,Helvetica" SIZE=-1>

		<!-- Flash #3 -->

Netscape launches a preview of <A HREF="http://pnp.individual.com/industrywatch/">Industry Watch</A> by Individual, a personalized service providing in-depth <A HREF="/newsref/pr/newsrelease496.html?cp=flh44se">business news</A> and information. 


 
		</FONT>
		<BR>
		<IMG SRC="/images/rule_grn.gif" WIDTH=445 HEIGHT=1 VSPACE=6 BORDER=0 ALT="">


		<FONT FACE="Arial,Helvetica" SIZE=-1>



		<!-- Flash #4 -->

<A HREF="/download/client_download.html?cp=flh54se">Download</A> Netscape French <A HREF="/comprod/products/communicator/index.html?cp=flh54se">Communicator 4.03</A> for Windows 95 and NT - and take advantage of dynamic web content.



		</FONT>
		<BR>
		<IMG SRC="/images/rule_grn.gif" WIDTH=445 HEIGHT=1 VSPACE=6 BORDER=0 ALT="">

		<FONT FACE="Arial,Helvetica" SIZE=-1>



		<!-- Flash #5 -->

Netscape <A HREF="http://fury:3000/newsref/pr/newsrelease493.html?cp=flh53se">works</A> with leading sales force automation vendors to deliver next-generation tools that will automate and manage sales environments.

		</FONT>
		<BR>
		<IMG SRC="/images/rule_grn.gif" WIDTH=445 HEIGHT=1 VSPACE=6 BORDER=0 ALT="">


		<!-- More News -->
		<FONT FACE="Arial,Helvetica" SIZE=-1><A HREF="/news/index.html?cp=fnws4se">More news...</A></FONT>
		<SPACER TYPE=horizontal SIZE=45>
		<FONT FACE="Arial,Helvetica" SIZE=-1>Go to a <A HREF="/index3.html">non-layers</A> version of this page.



		<BR>
		<BR>
		</TD>
	</TR>
</TABLE>


</TR>
</TABLE>



<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=612>
<TR BGCOLOR="#99CCCC">

<TD WIDTH=158 ROWSPAN=2>
<SPACER TYPE=VERTICAL SIZE=158><BR>&nbsp;
</TD>




<!-- COLUMN 1 NETSCAPE COLUMNS -->
<TD VALIGN=TOP WIDTH=134>
<!-- COLUMNS NG TOKEN -->
<!-- BEGIN-T3 -->
<A HREF="http://cgi.netscape.com/cgi-bin/redir?SpaceID=709&AdID=2493&URL=http://home.netscape.com/comprod/columns/mainthing/directory.html"><IMG SRC="/inserts/images/jb.gif" WIDTH=59 HEIGHT=54 VSPACE=0 HSPACE=0 ALIGN=ABSTOP BORDER=0 ALT="Jim Barksdale"></A> 
<!-- MID-T3 -->
<BR> 
<BR><FONT FACE="Arial,Helvetica"><B>Netscape<BR>Columns</B></FONT><BR>
<FONT FACE="Arial,Helvetica" SIZE=-1> 
In this week's <A HREF="http://cgi.netscape.com/cgi-bin/redir?SpaceID=709&AdID=2493&URL=http://home.netscape.com/comprod/columns/mainthing/directory.html"> The Main Thing</A><!-- MID-T3 -->  column, Jim Barksdale talks about directory services. Read all the <A HREF="http://cgi.netscape.com/cgi-bin/redir?SpaceID=709&AdID=2493&URL=http://home.netscape.com/news/index.html"> Netscape Columns</A> to keep up with Internet issues and trends.<P>
<!-- END-T3 -->
<BR></FONT>


</TD>

<TD WIDTH=14>
&nbsp;
</TD>

<!-- COLUMN 2 NETSCAPE PRODUCTS --> 
<TD VALIGN=TOP WIDTH=134>

<A HREF="http://cgi.netscape.com/cgi-bin/upgrade.cgi"><IMG SRC="/images/download.gif" WIDTH=90 HEIGHT=54 VSPACE=0 HSPACE=0 BORDER=0 ALT="Tune Up to Communicator"></A>
<BR>
<BR>
<FONT FACE="Arial,Helvetica"><B>Netscape<BR>Products</B></FONT><BR>
<FONT FACE="Arial,Helvetica" SIZE=-1>
<A HREF="http://cgi.netscape.com/cgi-bin/upgrade.cgi">Tune Up to Communicator</A><BR>
<A HREF="/download/index.html?cp=pdow4se">Get Any Netscape Product</A><BR>
<A HREF="http://cgi.netscape.com/cgi-bin/sub_upgrade.cgi">For Subscribers Only</A><P>
<P>
And tune up your Internet connection with <A HREF="/assist/isp_select/index.html?cp=pisp4se">ISP Select</A>.

</FONT><BR>
</TD>

<TD WIDTH=14>
&nbsp;
</TD>

<!-- STORE -->
<TD VALIGN=TOP WIDTH=146>
<A HREF="http://merchant.netscape.com/"><IMG SRC="/images/store_special.gif" WIDTH=58 HEIGHT=54 BORDER=0 HSPACE=0 VSPACE=0></A>
<BR>
<BR><FONT FACE="Arial,Helvetica"><B>Netscape<BR>Store Special</B></FONT><BR>

<FONT FACE="Arial,Helvetica" SIZE=-1>
<!-- STORE -->
        
Looking for a rich Internet experience? Purchase Netscape Communicator Deluxe Edition and get a <A HREF="http://merchant.netscape.com/netstore/clients/iae.html?cp=mspe4se">$30 rebate</A>. Plus  <A HREF="http://merchant.netscape.com/netstore/PUBS/index.html?cp=mspe4se">save $10</A> on the <I>Official Netscape Communicator 4.0 Professional Edition</I> book.


</FONT>
<P>
</TD>

<TD WIDTH=10>
&nbsp;
</TD>


</TD>
</TR>
</TABLE>

<TABLE WIDTH=612>
<TR>
<TD WIDTH=90>
&nbsp;
</TD>

<TD WIDTH=450>
<P>
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0> 
<TR><TD COLSPAN=2 WIDTH=461><A TARGET="_top" HREF="/images/footer.map"><IMG
SRC="/images/footer.gif" HSPACE=0 VSPACE=0 ISMAP USEMAP="#footermap" HEIGHT=13 BORDER=0 WIDTH=461></A><MAP NAME="footermap"><AREA SHAPE=RECT COORDS="101,2,146,10" HREF="/netcenter/" TARGET="_top">
<AREA SHAPE=RECT COORDS="162,2,208,10" HREF="/download/" TARGET="_top">
<AREA SHAPE=RECT COORDS="224,2,254,10" HREF="/search/" TARGET="_top">
<AREA SHAPE=RECT COORDS="271,2,312,10" HREF="/map/" TARGET="_top">
<AREA SHAPE=RECT COORDS="328,2,371,10" HREF="/feedback/" TARGET="_top">
<AREA SHAPE=RECT COORDS="387,2,457,10" HREF="/site/" TARGET="_top"></MAP></TD>
<TD WIDTH=101></TD></TR><TR><TD WIDTH=101></TD><TD WIDTH=360>
<FONT FACE="Arial, Helvetica" SIZE=-2><BR>Corporate Sales: 650/937-2555 Personal Sales: 650/937-3777<BR>
Government Sales: 650/937-3678<BR>If you have any questions please visit 
<A HREF="/assist/" TARGET="_top">Customer Service</A> or contact your nearest 
<A HREF="/misc/contact_info.html" TARGET="_top">sales office</A>.  Copyright &copy; 1997 
<A HREF="/misc/trademarks.html" TARGET="_top">Netscape Communications</A> 
Corporation.  This site powered by <A HREF="/comprod/server_central/" TARGET="_top">Netscape SuiteSpot servers</A>.</FONT></TD><TD WIDTH=101></TD></TR> 
</TABLE>
</DIV>
<P>
<BR>
</TD>
</TR>
</TABLE>


</LAYER>



<!-- AD LAYER -->
<LAYER NAME="ad" HEIGHT=60 WIDTH=245 LEFT=700 TOP=0 VISIBILITY="HIDE" Z-INDEX=99><LAYER WIDTH=8 CLIP="0,0,8,26"><LAYER LEFT=-28 TOP=-26><IMG SRC="/images/chrome_combo.gif" WIDTH=316 HSPACE=0 VSPACE=0 HEIGHT=146 BORDER="0" USEMAP="#admap" ALIGN=TOP ALT=""></LAYER></LAYER><LAYER LEFT=8 BGCOLOR="#000000" CLIP="0,0,234,60"><!-- BEGIN-T1 -->
<A HREF="http://cgi.netscape.com/cgi-bin/redir?SpaceID=708&AdID=2371&URL=http://guide.netscape.com/%3Fa">
<!-- MID-T1 -->
<IMG SRC="/inserts/images/netscap_125ihban_nguide_ad.gif" ALT="New to the Web?" WIDTH=234 HEIGHT=59 BORDER=1></A>
<!-- END-T1 --></LAYER><MAP NAME="admap"><AREA SHAPE=RECT COORDS="28,31,35,57" HREF="" onClick="javascript:h6();return false;"></MAP></LAYER>


<!-- CARD1 LAYER -->
<LAYER NAME="card1" LEFT=0 TOP=0 WIDTH=576 HEIGHT=450 VISIBILITY="HIDE" Z-INDEX=0>

<LAYER NAME="black_bg" WIDTH=576 LEFT=0 TOP=0 CLIP="576,450" BGCOLOR=#000000></LAYER>

<LAYER NAME="netcenter" WIDTH=574 LEFT=1 TOP=1 CLIP="574,448" BGCOLOR=#FFFFFF>

<LAYER NAME="teaser_logo" WIDTH=408 LEFT=10 TOP=10>
<A HREF="http://form.netscape.com/ibd/cgi-bin/ibd-x.cgi">
<IMG SRC="/images/ibd_signup.gif" HEIGHT=54 WIDTH=157 ALT="Turn Your In-Box Into a News Center" BORDER=0></A>
<SPACER TYPE=horizontal SIZE=50>
<A HREF="/netcenter/index.html?cp=nnet4se">
<IMG SRC="/images/netcent.gif" HEIGHT=64 WIDTH=173 ALT="Netcenter" BORDER=0></A>
</LAYER>

<LAYER NAME="headline_flashes" WIDTH=408 LEFT=10 TOP=94>


<FONT FACE="Arial,Helvetica" Size=+1 COLOR="#000066">
<B>
In-Box Direct Delivers The New York Times 
</B>
</FONT>
<SPAN ID="style_16_19">

<P>
Get the best information on the Web without searching. <A HREF="http://form.netscape.com/ibd/cgi-bin/ibd-x.cgi">Netscape In-Box Direct</A> offers rich HTML content from USA Today, the Wall Street Journal, Sports Illustrated, ELLE International, and dozens more delivered directly to your email in-box.  Choose the publications you want, and Netscape In-Box Direct will take care of the rest.  
<P>

</SPAN>

<SPAN ID="style_12_15_bold">
Win a BMW Z3 1.9 Roadster
</SPAN>
<BR> 
<SPAN ID="style_12_15">
<A HREF="http://home.netscape.com/netcenter/tunereg/start.html?cp=nfl14se">Sign up</A> for Netcenter today and register to <A HREF="http://home.netscape.com/netcenter/tuneup/index.html?cp=nfl14se">win</A> a BMW Z3 1.9 Roadster, PC workstations from Hewlett-Packard, trips from Travelocity and Continental Airlines, and music from CDnow.
<P>
</SPAN>
<SPAN ID="style_12_15_bold">
Software Store
</SPAN>
<BR>
<SPAN ID="style_12_15">
Looking for new collaboration software? Web development tools? Netscape's <A HREF="http://merchant.netscape.com/index.html?cp=nfl24se">Software Store</A> has all your business solutions software.
</SPAN>
<P>
<SPAN ID="style_12_15_bold">
Netscape Guide by Yahoo!
</SPAN>
<BR>
<SPAN ID="style_12_15">
Want a hot stock tip? Head over to the finance section of <A HREF="http://netscape.yahoo.com/guide/index.html?cp=nfl34se">Netscape Guide</A> by Yahoo! for a rich assortment of money management and investment resources.
</SPAN>

</LAYER>


<!-- Columns Menu --> 

<LAYER NAME="column_3" WIDTH=174 LEFT=428 TOP=0 CLIP="174,450" BGCOLOR=#99CCCC>
<LAYER NAME="column_3_text" TOP=15 LEFT=10>
<A HREF="/netcenter/index.html?cp=nnet4se"><IMG SRC="/images/tunein.gif" HEIGHT=74 WIDTH=101 ALT="Tune in to Netcenter, the Best of the Net for:" BORDER=0></A>
<SPACER TYPE=VERTICAL SIZE=26>
<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 ALIGN=LEFT VALIGN=TOP>

<!-- Begining of NGAD content for Netcenter Card Menu -->

<TR>
	<TD COLSPAN=2>
	<SPAN ID="style_12_13">
	<A HREF="/netcenter/index.html?cp=nind4se"><B>Community</B></A>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD WIDTH=10 VALIGN=TOP>
	<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>
	<TD>

	<SPAN ID="style_10_13">
	<A HREF="/netcenter/vo/index.html?cp=nvo4se">Virtual Office</A>
	</SPAN>
	<P>
	</TD>
</TR>



<TR>
	<TD COLSPAN=2>
	<SPAN ID="style_12_13">
	<BR>
	<A HREF="/netcenter/index.html?cp=nsft4se"><B>Software</B></A>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD WIDTH=10 VALIGN=TOP>
	<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>

	<TD>
	<SPAN ID="style_10_13">
	<A HREF="/download/software_direct.html?cp=nupd4se">SmartUpdate</A>
	</SPAN>
	</TD>
</TR>


<TR>
	<TD WIDTH=10 VALIGN=TOP>
	<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>

	<TD>
	<SPAN ID="style_10_13">
	<A HREF="http://merchant.netscape.com/index.html?cp=nsto4se">Software Store</A>
	<P>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD COLSPAN=2>
	<SPAN ID="style_12_13">
	<BR>
	<A HREF="/netcenter/index.html?cp=ncon4se"><B>Content</B></A>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD WIDTH=10 VALIGN=TOP>
	<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>

	<TD>
	<SPAN ID="style_10_13">
<A HREF="http://pnp.individual.com/industrywatch/index.html?cp=iw4se">Industry Watch</A>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD WIDTH=10 VALIGN=TOP><IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>

	<TD>
	<SPAN ID="style_10_13">
	<A HREF="/netcenter/cf/index1.html?cp=nchf4se">Channel Finder</A>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD WIDTH=10 VALIGN=TOP><IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>

	<TD>
	<SPAN ID="style_10_13">
	<A HREF="http://form.netscape.com/ibd/cgi-bin/ibd-x.cgi">In-Box Direct</A>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD WIDTH=10 VALIGN=TOP>
	<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>

	<TD>
	<SPAN ID="style_10_13">
	<A HREF="http://guide.netscape.com/guide/index.html?cp=nyao4se">Internet Guide</A>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD WIDTH=10 VALIGN=TOP>
	<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>

	<TD COLSPAN=2>
	<SPAN ID="style_10_13">
	<A HREF="/escapes/search/index.html?cp=nsea4se">Net Search</A>
	<P>
	</SPAN>
	</TD>
</TR>

<!-- End of NGAD content for Netcenter Menu -->



<TR>
	<TD COLSPAN=2>
	<SPAN ID="style_12_13">
	<BR>
	<B>
	Available Soon
	</B>
	</SPAN>
	</TD>
</TR>

<TR>
	<TD WIDTH=10 VALIGN=TOP>
	<IMG SRC="/images/bullet.gif" WIDTH=5 HEIGHT=5 BORDER=0 ALT="" VSPACE=5>
	</TD>

	<TD>
	<SPAN ID="style_10_13">
	Professional Community
	</SPAN>
	</TD>
</TR>

</TABLE>

</LAYER></LAYER>
</LAYER></LAYER>
<!-- END CARD1 LAYER -->

<LAYER NAME="card1tab" LEFT=0 TOP=0 WIDTH=14 CLIP=0,0,14,146 VISIBILITY="HIDE" Z-INDEX=0><LAYER LEFT=2 TOP=0 HEIGHT=146 WIDTH=12 BGCOLOR="#003366"></LAYER><LAYER LEFT=-14 TOP=0><IMG SRC="/images/chrome_combo.gif" ALIGN=TOP WIDTH=316 HEIGHT=146 BORDER=0 USEMAP="#card1tabmap" ALT=""><MAP NAME="card1tabmap"><AREA SHAPE=RECT COORDS="17,5,26,26" HREF="" onClick="javascript:k8('card1');return false;"></MAP></LAYER></LAYER>

<LAYER NAME="card1utab" LEFT=0 TOP=0 WIDTH=288 CLIP=0,0,288,26 VISIBILITY="HIDE" Z-INDEX=0><LAYER TOP=2 LEFT=0 BGCOLOR="#003366" HEIGHT=24 WIDTH=288><CENTER><FONT COLOR="#FFFFFF" FACE="Arial,Helvetica" SIZE=+2>Netcenter</FONT></CENTER></LAYER><LAYER LEFT=-28 TOP=-120><IMG SRC="/images/chrome_combo.gif" ALIGN=TOP WIDTH=316 HEIGHT=146 BORDER=0 USEMAP="#card1utabmap" ALT=""><MAP NAME="card1utabmap"><AREA SHAPE=RECT COORDS="289,127,310,136" HREF="" onClick="javascript:k8('card1'); return false;"></MAP></LAYER></LAYER>

<LAYER NAME="card1ubar" LEFT=0 TOP=0 WIDTH=288 CLIP="0,0,288,13" BGCOLOR="#003366" VISIBILITY="HIDE" Z-INDEX=0><LAYER LEFT=-28 TOP=0><IMG SRC="/images/chrome_combo.gif" ALIGN=TOP WIDTH=316 HEIGHT=146 BORDER=0 ALT=""></LAYER></LAYER>


</LAYER> <!-- netscapehome -->


<LAYER NAME="menu" SRC="menu4.html" HEIGHT=450 WIDTH=50 LEFT=0 TOP=0 Z-INDEX=100 VISIBILITY="show">
</LAYER>


</BODY>
</HTML>