aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs
blob: 9e0cd81d1840a0096e8863e8855d76110b8f782e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
namespace TimeHACK.OS.Win95.Win95Apps
{
    partial class WinClassicIE4
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicIE4));
            this.program = new System.Windows.Forms.Panel();
            this.browsingarea = new System.Windows.Forms.Panel();
            this.padamsmain = new System.Windows.Forms.Panel();
            this.Panel12 = new System.Windows.Forms.Panel();
            this.LinkLabel17 = new System.Windows.Forms.LinkLabel();
            this.Label38 = new System.Windows.Forms.Label();
            this.Label20 = new System.Windows.Forms.Label();
            this.Panel10 = new System.Windows.Forms.Panel();
            this.Button16 = new System.Windows.Forms.Button();
            this.Label22 = new System.Windows.Forms.Label();
            this.Button15 = new System.Windows.Forms.Button();
            this.Label21 = new System.Windows.Forms.Label();
            this.Label18 = new System.Windows.Forms.Label();
            this.Panel9 = new System.Windows.Forms.Panel();
            this.Label37 = new System.Windows.Forms.Label();
            this.Button24 = new System.Windows.Forms.Button();
            this.Button23 = new System.Windows.Forms.Button();
            this.Label36 = new System.Windows.Forms.Label();
            this.Label19 = new System.Windows.Forms.Label();
            this.Panel8 = new System.Windows.Forms.Panel();
            this.Button26 = new System.Windows.Forms.Button();
            this.Label57 = new System.Windows.Forms.Label();
            this.WCDownloadButton = new System.Windows.Forms.Button();
            this.Label43 = new System.Windows.Forms.Label();
            this.Button17 = new System.Windows.Forms.Button();
            this.Label5 = new System.Windows.Forms.Label();
            this.Label17 = new System.Windows.Forms.Label();
            this.Label16 = new System.Windows.Forms.Label();
            this.Label4 = new System.Windows.Forms.Label();
            this.padamsbackgrounds = new System.Windows.Forms.Panel();
            this.Panel13 = new System.Windows.Forms.Panel();
            this.Previewimage = new System.Windows.Forms.PictureBox();
            this.Button21 = new System.Windows.Forms.Button();
            this.Button22 = new System.Windows.Forms.Button();
            this.Label35 = new System.Windows.Forms.Label();
            this.mclarinflimage = new System.Windows.Forms.PictureBox();
            this.Button20 = new System.Windows.Forms.Button();
            this.Button19 = new System.Windows.Forms.Button();
            this.Label34 = new System.Windows.Forms.Label();
            this.win95background = new System.Windows.Forms.PictureBox();
            this.Label33 = new System.Windows.Forms.Label();
            this.Label32 = new System.Windows.Forms.Label();
            this.hotmailmain = new System.Windows.Forms.Panel();
            this.PictureBox9 = new System.Windows.Forms.PictureBox();
            this.PictureBox10 = new System.Windows.Forms.PictureBox();
            this.Label31 = new System.Windows.Forms.Label();
            this.Label30 = new System.Windows.Forms.Label();
            this.Label29 = new System.Windows.Forms.Label();
            this.PictureBox8 = new System.Windows.Forms.PictureBox();
            this.PictureBox7 = new System.Windows.Forms.PictureBox();
            this.PictureBox6 = new System.Windows.Forms.PictureBox();
            this.Label28 = new System.Windows.Forms.Label();
            this.Label27 = new System.Windows.Forms.Label();
            this.PictureBox5 = new System.Windows.Forms.PictureBox();
            this.RadioButton3 = new System.Windows.Forms.RadioButton();
            this.RadioButton2 = new System.Windows.Forms.RadioButton();
            this.RadioButton1 = new System.Windows.Forms.RadioButton();
            this.Button18 = new System.Windows.Forms.Button();
            this.txtpassword = new System.Windows.Forms.TextBox();
            this.txtloginname = new System.Windows.Forms.TextBox();
            this.Label26 = new System.Windows.Forms.Label();
            this.Label25 = new System.Windows.Forms.Label();
            this.Label24 = new System.Windows.Forms.Label();
            this.Label23 = new System.Windows.Forms.Label();
            this.Panel11 = new System.Windows.Forms.Panel();
            this.PictureBox4 = new System.Windows.Forms.PictureBox();
            this.PictureBox3 = new System.Windows.Forms.PictureBox();
            this.hotmailpadams = new System.Windows.Forms.Panel();
            this.email1 = new System.Windows.Forms.Panel();
            this.LinkLabel18 = new System.Windows.Forms.LinkLabel();
            this.Label56 = new System.Windows.Forms.Label();
            this.Label47 = new System.Windows.Forms.Label();
            this.TextBox12 = new System.Windows.Forms.TextBox();
            this.TextBox11 = new System.Windows.Forms.TextBox();
            this.TextBox7 = new System.Windows.Forms.TextBox();
            this.TextBox6 = new System.Windows.Forms.TextBox();
            this.Label46 = new System.Windows.Forms.Label();
            this.Label45 = new System.Windows.Forms.Label();
            this.Label44 = new System.Windows.Forms.Label();
            this.email3 = new System.Windows.Forms.Panel();
            this.Label52 = new System.Windows.Forms.Label();
            this.TextBox17 = new System.Windows.Forms.TextBox();
            this.TextBox18 = new System.Windows.Forms.TextBox();
            this.TextBox19 = new System.Windows.Forms.TextBox();
            this.TextBox20 = new System.Windows.Forms.TextBox();
            this.Label53 = new System.Windows.Forms.Label();
            this.Label54 = new System.Windows.Forms.Label();
            this.Label55 = new System.Windows.Forms.Label();
            this.email2 = new System.Windows.Forms.Panel();
            this.Label48 = new System.Windows.Forms.Label();
            this.TextBox13 = new System.Windows.Forms.TextBox();
            this.TextBox14 = new System.Windows.Forms.TextBox();
            this.TextBox15 = new System.Windows.Forms.TextBox();
            this.TextBox16 = new System.Windows.Forms.TextBox();
            this.Label49 = new System.Windows.Forms.Label();
            this.Label50 = new System.Windows.Forms.Label();
            this.Label51 = new System.Windows.Forms.Label();
            this.ListBox1 = new System.Windows.Forms.ListBox();
            this.PictureBox14 = new System.Windows.Forms.PictureBox();
            this.PictureBox13 = new System.Windows.Forms.PictureBox();
            this.PictureBox12 = new System.Windows.Forms.PictureBox();
            this.googlealpha = new System.Windows.Forms.Panel();
            this.Label15 = new System.Windows.Forms.Label();
            this.Panel6 = new System.Windows.Forms.Panel();
            this.LinkLabel13 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel10 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel11 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel12 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel9 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel8 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel7 = new System.Windows.Forms.LinkLabel();
            this.Panel7 = new System.Windows.Forms.Panel();
            this.LinkLabel14 = new System.Windows.Forms.LinkLabel();
            this.Button14 = new System.Windows.Forms.Button();
            this.TextBox5 = new System.Windows.Forms.TextBox();
            this.Label14 = new System.Windows.Forms.Label();
            this.Label13 = new System.Windows.Forms.Label();
            this.Panel5 = new System.Windows.Forms.Panel();
            this.LinkLabel6 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel5 = new System.Windows.Forms.LinkLabel();
            this.Label12 = new System.Windows.Forms.Label();
            this.Panel4 = new System.Windows.Forms.Panel();
            this.Button13 = new System.Windows.Forms.Button();
            this.Button12 = new System.Windows.Forms.Button();
            this.TextBox4 = new System.Windows.Forms.TextBox();
            this.Label11 = new System.Windows.Forms.Label();
            this.PictureBox2 = new System.Windows.Forms.PictureBox();
            this.padamshidden = new System.Windows.Forms.Panel();
            this.TextBox10 = new System.Windows.Forms.TextBox();
            this.secretwebsite = new System.Windows.Forms.Panel();
            this.TextBox9 = new System.Windows.Forms.TextBox();
            this.skindows95advertisment = new System.Windows.Forms.Panel();
            this.Label42 = new System.Windows.Forms.Label();
            this.Label41 = new System.Windows.Forms.Label();
            this.TextBox8 = new System.Windows.Forms.TextBox();
            this.PictureBox11 = new System.Windows.Forms.PictureBox();
            this.Label40 = new System.Windows.Forms.Label();
            this.Label39 = new System.Windows.Forms.Label();
            this.googlemain = new System.Windows.Forms.Panel();
            this.googlebetalink = new System.Windows.Forms.LinkLabel();
            this.googleprototypelink = new System.Windows.Forms.LinkLabel();
            this.Label6 = new System.Windows.Forms.Label();
            this.googleprototype = new System.Windows.Forms.Panel();
            this.Label10 = new System.Windows.Forms.Label();
            this.Panel3 = new System.Windows.Forms.Panel();
            this.LinkLabel4 = new System.Windows.Forms.LinkLabel();
            this.Button11 = new System.Windows.Forms.Button();
            this.TextBox3 = new System.Windows.Forms.TextBox();
            this.Label9 = new System.Windows.Forms.Label();
            this.LinkLabel3 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel2 = new System.Windows.Forms.LinkLabel();
            this.LinkLabel1 = new System.Windows.Forms.LinkLabel();
            this.Panel2 = new System.Windows.Forms.Panel();
            this.Label8 = new System.Windows.Forms.Label();
            this.Button10 = new System.Windows.Forms.Button();
            this.GoogleSearchButton = new System.Windows.Forms.Button();
            this.ComboBox1 = new System.Windows.Forms.ComboBox();
            this.TextBox2 = new System.Windows.Forms.TextBox();
            this.Label7 = new System.Windows.Forms.Label();
            this.pboxgoogleprototypelogo = new System.Windows.Forms.PictureBox();
            this.Panel14 = new System.Windows.Forms.Panel();
            this.GoButton = new System.Windows.Forms.Button();
            this.addressbar = new System.Windows.Forms.ComboBox();
            this.Label1 = new System.Windows.Forms.Label();
            this.Panel1 = new System.Windows.Forms.Panel();
            this.Button30 = new System.Windows.Forms.Button();
            this.Button29 = new System.Windows.Forms.Button();
            this.Button28 = new System.Windows.Forms.Button();
            this.Button27 = new System.Windows.Forms.Button();
            this.Button7 = new System.Windows.Forms.Button();
            this.Button6 = new System.Windows.Forms.Button();
            this.HomeButton = new System.Windows.Forms.Button();
            this.Button4 = new System.Windows.Forms.Button();
            this.Button3 = new System.Windows.Forms.Button();
            this.ForwardButton = new System.Windows.Forms.Button();
            this.BackButton = new System.Windows.Forms.Button();
            this.PictureBox1 = new System.Windows.Forms.PictureBox();
            this.MenuStrip3 = new System.Windows.Forms.MenuStrip();
            this.ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem15 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem16 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem17 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem18 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem19 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem20 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem21 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem22 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem23 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem24 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem25 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem26 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem27 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem28 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem29 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem30 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem31 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem32 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem33 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem34 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem35 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem36 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem37 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem38 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem39 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem40 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem41 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem42 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem43 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem44 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem45 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem46 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem47 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem48 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem49 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem50 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem51 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem52 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem53 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem54 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem55 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem56 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem57 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem58 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem59 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem60 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem61 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem62 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem63 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem64 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem65 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem66 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem67 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem68 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem69 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem70 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem71 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem72 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem78 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem79 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem80 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem81 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem82 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem83 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem84 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem85 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem86 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem87 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem73 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem74 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem75 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem76 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem77 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem88 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem89 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem90 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem91 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem92 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem93 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem94 = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripMenuItem95 = new System.Windows.Forms.ToolStripMenuItem();
            this.program.SuspendLayout();
            this.browsingarea.SuspendLayout();
            this.padamsmain.SuspendLayout();
            this.Panel12.SuspendLayout();
            this.Panel10.SuspendLayout();
            this.Panel9.SuspendLayout();
            this.Panel8.SuspendLayout();
            this.padamsbackgrounds.SuspendLayout();
            this.Panel13.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Previewimage)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.mclarinflimage)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.win95background)).BeginInit();
            this.hotmailmain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox5)).BeginInit();
            this.Panel11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox3)).BeginInit();
            this.hotmailpadams.SuspendLayout();
            this.email1.SuspendLayout();
            this.email3.SuspendLayout();
            this.email2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox12)).BeginInit();
            this.googlealpha.SuspendLayout();
            this.Panel6.SuspendLayout();
            this.Panel7.SuspendLayout();
            this.Panel5.SuspendLayout();
            this.Panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).BeginInit();
            this.padamshidden.SuspendLayout();
            this.secretwebsite.SuspendLayout();
            this.skindows95advertisment.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox11)).BeginInit();
            this.googlemain.SuspendLayout();
            this.googleprototype.SuspendLayout();
            this.Panel3.SuspendLayout();
            this.Panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pboxgoogleprototypelogo)).BeginInit();
            this.Panel14.SuspendLayout();
            this.Panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit();
            this.MenuStrip3.SuspendLayout();
            this.SuspendLayout();
            // 
            // program
            // 
            this.program.BackColor = System.Drawing.Color.Silver;
            this.program.Controls.Add(this.browsingarea);
            this.program.Controls.Add(this.Panel14);
            this.program.Controls.Add(this.Panel1);
            this.program.Controls.Add(this.PictureBox1);
            this.program.Controls.Add(this.MenuStrip3);
            this.program.Dock = System.Windows.Forms.DockStyle.Fill;
            this.program.Location = new System.Drawing.Point(0, 0);
            this.program.Name = "program";
            this.program.Size = new System.Drawing.Size(959, 594);
            this.program.TabIndex = 13;
            // 
            // browsingarea
            // 
            this.browsingarea.BackColor = System.Drawing.Color.White;
            this.browsingarea.Controls.Add(this.padamsmain);
            this.browsingarea.Controls.Add(this.padamsbackgrounds);
            this.browsingarea.Controls.Add(this.hotmailmain);
            this.browsingarea.Controls.Add(this.hotmailpadams);
            this.browsingarea.Controls.Add(this.googlealpha);
            this.browsingarea.Controls.Add(this.padamshidden);
            this.browsingarea.Controls.Add(this.secretwebsite);
            this.browsingarea.Controls.Add(this.skindows95advertisment);
            this.browsingarea.Controls.Add(this.googlemain);
            this.browsingarea.Controls.Add(this.googleprototype);
            this.browsingarea.Dock = System.Windows.Forms.DockStyle.Fill;
            this.browsingarea.Location = new System.Drawing.Point(0, 111);
            this.browsingarea.Name = "browsingarea";
            this.browsingarea.Size = new System.Drawing.Size(959, 483);
            this.browsingarea.TabIndex = 9;
            this.browsingarea.Visible = false;
            // 
            // padamsmain
            // 
            this.padamsmain.AutoScroll = true;
            this.padamsmain.Controls.Add(this.Panel12);
            this.padamsmain.Controls.Add(this.Label20);
            this.padamsmain.Controls.Add(this.Panel10);
            this.padamsmain.Controls.Add(this.Panel9);
            this.padamsmain.Controls.Add(this.Panel8);
            this.padamsmain.Controls.Add(this.Label16);
            this.padamsmain.Controls.Add(this.Label4);
            this.padamsmain.Location = new System.Drawing.Point(681, 336);
            this.padamsmain.Name = "padamsmain";
            this.padamsmain.Size = new System.Drawing.Size(255, 115);
            this.padamsmain.TabIndex = 4;
            // 
            // Panel12
            // 
            this.Panel12.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel12.Controls.Add(this.LinkLabel17);
            this.Panel12.Controls.Add(this.Label38);
            this.Panel12.Location = new System.Drawing.Point(360, 94);
            this.Panel12.Name = "Panel12";
            this.Panel12.Size = new System.Drawing.Size(200, 305);
            this.Panel12.TabIndex = 6;
            // 
            // LinkLabel17
            // 
            this.LinkLabel17.AutoSize = true;
            this.LinkLabel17.Location = new System.Drawing.Point(56, 47);
            this.LinkLabel17.Name = "LinkLabel17";
            this.LinkLabel17.Size = new System.Drawing.Size(90, 13);
            this.LinkLabel17.TabIndex = 3;
            this.LinkLabel17.TabStop = true;
            this.LinkLabel17.Text = "www.hotmail.com";
            // 
            // Label38
            // 
            this.Label38.AutoSize = true;
            this.Label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label38.Location = new System.Drawing.Point(66, 17);
            this.Label38.Name = "Label38";
            this.Label38.Size = new System.Drawing.Size(75, 16);
            this.Label38.TabIndex = 2;
            this.Label38.Text = "WebSites";
            // 
            // Label20
            // 
            this.Label20.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Label20.AutoSize = true;
            this.Label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label20.Location = new System.Drawing.Point(5, 422);
            this.Label20.Name = "Label20";
            this.Label20.Size = new System.Drawing.Size(174, 15);
            this.Label20.TabIndex = 7;
            this.Label20.Text = "Copyright 1998 12padams";
            // 
            // Panel10
            // 
            this.Panel10.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel10.Controls.Add(this.Button16);
            this.Panel10.Controls.Add(this.Label22);
            this.Panel10.Controls.Add(this.Button15);
            this.Panel10.Controls.Add(this.Label21);
            this.Panel10.Controls.Add(this.Label18);
            this.Panel10.Location = new System.Drawing.Point(121, 94);
            this.Panel10.Name = "Panel10";
            this.Panel10.Size = new System.Drawing.Size(200, 305);
            this.Panel10.TabIndex = 6;
            // 
            // Button16
            // 
            this.Button16.BackColor = System.Drawing.Color.Silver;
            this.Button16.Location = new System.Drawing.Point(115, 74);
            this.Button16.Name = "Button16";
            this.Button16.Size = new System.Drawing.Size(75, 23);
            this.Button16.TabIndex = 7;
            this.Button16.Text = "Download";
            this.Button16.UseVisualStyleBackColor = false;
            // 
            // Label22
            // 
            this.Label22.AutoSize = true;
            this.Label22.Location = new System.Drawing.Point(12, 78);
            this.Label22.Name = "Label22";
            this.Label22.Size = new System.Drawing.Size(79, 13);
            this.Label22.TabIndex = 6;
            this.Label22.Text = "Error Blaster 95";
            // 
            // Button15
            // 
            this.Button15.BackColor = System.Drawing.Color.Silver;
            this.Button15.Location = new System.Drawing.Point(115, 40);
            this.Button15.Name = "Button15";
            this.Button15.Size = new System.Drawing.Size(75, 23);
            this.Button15.TabIndex = 5;
            this.Button15.Text = "Download";
            this.Button15.UseVisualStyleBackColor = false;
            // 
            // Label21
            // 
            this.Label21.AutoSize = true;
            this.Label21.Location = new System.Drawing.Point(12, 44);
            this.Label21.Name = "Label21";
            this.Label21.Size = new System.Drawing.Size(82, 13);
            this.Label21.TabIndex = 4;
            this.Label21.Text = "Start Runner 95";
            // 
            // Label18
            // 
            this.Label18.AutoSize = true;
            this.Label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label18.Location = new System.Drawing.Point(35, 18);
            this.Label18.Name = "Label18";
            this.Label18.Size = new System.Drawing.Size(124, 16);
            this.Label18.TabIndex = 3;
            this.Label18.Text = "Example Viruses";
            // 
            // Panel9
            // 
            this.Panel9.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel9.Controls.Add(this.Label37);
            this.Panel9.Controls.Add(this.Button24);
            this.Panel9.Controls.Add(this.Button23);
            this.Panel9.Controls.Add(this.Label36);
            this.Panel9.Controls.Add(this.Label19);
            this.Panel9.Location = new System.Drawing.Point(-114, 94);
            this.Panel9.Name = "Panel9";
            this.Panel9.Size = new System.Drawing.Size(207, 305);
            this.Panel9.TabIndex = 6;
            // 
            // Label37
            // 
            this.Label37.AutoSize = true;
            this.Label37.Location = new System.Drawing.Point(11, 94);
            this.Label37.Name = "Label37";
            this.Label37.Size = new System.Drawing.Size(68, 13);
            this.Label37.TabIndex = 8;
            this.Label37.Text = "Skindows 95";
            // 
            // Button24
            // 
            this.Button24.BackColor = System.Drawing.Color.Silver;
            this.Button24.Location = new System.Drawing.Point(96, 87);
            this.Button24.Name = "Button24";
            this.Button24.Size = new System.Drawing.Size(106, 23);
            this.Button24.TabIndex = 7;
            this.Button24.Text = "Info";
            this.Button24.UseVisualStyleBackColor = false;
            // 
            // Button23
            // 
            this.Button23.BackColor = System.Drawing.Color.Silver;
            this.Button23.Location = new System.Drawing.Point(96, 46);
            this.Button23.Name = "Button23";
            this.Button23.Size = new System.Drawing.Size(106, 23);
            this.Button23.TabIndex = 6;
            this.Button23.Text = "View Backgrounds";
            this.Button23.UseVisualStyleBackColor = false;
            // 
            // Label36
            // 
            this.Label36.AutoSize = true;
            this.Label36.Location = new System.Drawing.Point(11, 51);
            this.Label36.Name = "Label36";
            this.Label36.Size = new System.Drawing.Size(70, 13);
            this.Label36.TabIndex = 5;
            this.Label36.Text = "Backgrounds";
            // 
            // Label19
            // 
            this.Label19.AutoSize = true;
            this.Label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label19.Location = new System.Drawing.Point(44, 13);
            this.Label19.Name = "Label19";
            this.Label19.Size = new System.Drawing.Size(112, 16);
            this.Label19.TabIndex = 4;
            this.Label19.Text = "Customizations";
            // 
            // Panel8
            // 
            this.Panel8.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel8.Controls.Add(this.Button26);
            this.Panel8.Controls.Add(this.Label57);
            this.Panel8.Controls.Add(this.WCDownloadButton);
            this.Panel8.Controls.Add(this.Label43);
            this.Panel8.Controls.Add(this.Button17);
            this.Panel8.Controls.Add(this.Label5);
            this.Panel8.Controls.Add(this.Label17);
            this.Panel8.Location = new System.Drawing.Point(-342, 94);
            this.Panel8.Name = "Panel8";
            this.Panel8.Size = new System.Drawing.Size(200, 305);
            this.Panel8.TabIndex = 5;
            // 
            // Button26
            // 
            this.Button26.BackColor = System.Drawing.Color.Silver;
            this.Button26.Location = new System.Drawing.Point(120, 115);
            this.Button26.Name = "Button26";
            this.Button26.Size = new System.Drawing.Size(75, 22);
            this.Button26.TabIndex = 8;
            this.Button26.Text = "Download";
            this.Button26.UseVisualStyleBackColor = false;
            // 
            // Label57
            // 
            this.Label57.AutoSize = true;
            this.Label57.Location = new System.Drawing.Point(10, 120);
            this.Label57.Name = "Label57";
            this.Label57.Size = new System.Drawing.Size(90, 13);
            this.Label57.TabIndex = 7;
            this.Label57.Text = "Time Distorter 0.1";
            // 
            // WCDownloadButton
            // 
            this.WCDownloadButton.BackColor = System.Drawing.Color.Silver;
            this.WCDownloadButton.Location = new System.Drawing.Point(120, 81);
            this.WCDownloadButton.Name = "WCDownloadButton";
            this.WCDownloadButton.Size = new System.Drawing.Size(75, 22);
            this.WCDownloadButton.TabIndex = 6;
            this.WCDownloadButton.Text = "Download";
            this.WCDownloadButton.UseVisualStyleBackColor = false;
            // 
            // Label43
            // 
            this.Label43.AutoSize = true;
            this.Label43.Location = new System.Drawing.Point(8, 87);
            this.Label43.Name = "Label43";
            this.Label43.Size = new System.Drawing.Size(82, 13);
            this.Label43.TabIndex = 5;
            this.Label43.Text = "Web Chat 1998";
            // 
            // Button17
            // 
            this.Button17.BackColor = System.Drawing.Color.Silver;
            this.Button17.Location = new System.Drawing.Point(120, 47);
            this.Button17.Name = "Button17";
            this.Button17.Size = new System.Drawing.Size(75, 22);
            this.Button17.TabIndex = 4;
            this.Button17.Text = "Download";
            this.Button17.UseVisualStyleBackColor = false;
            // 
            // Label5
            // 
            this.Label5.AutoSize = true;
            this.Label5.Location = new System.Drawing.Point(8, 51);
            this.Label5.Name = "Label5";
            this.Label5.Size = new System.Drawing.Size(111, 13);
            this.Label5.TabIndex = 3;
            this.Label5.Text = "Guess the Number V1";
            // 
            // Label17
            // 
            this.Label17.AutoSize = true;
            this.Label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label17.Location = new System.Drawing.Point(38, 17);
            this.Label17.Name = "Label17";
            this.Label17.Size = new System.Drawing.Size(122, 16);
            this.Label17.TabIndex = 2;
            this.Label17.Text = "Games/Software";
            // 
            // Label16
            // 
            this.Label16.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Label16.AutoSize = true;
            this.Label16.Location = new System.Drawing.Point(-38, 36);
            this.Label16.Name = "Label16";
            this.Label16.Size = new System.Drawing.Size(265, 13);
            this.Label16.TabIndex = 1;
            this.Label16.Text = "The best customizations for your windows 95 computer";
            // 
            // Label4
            // 
            this.Label4.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Label4.AutoSize = true;
            this.Label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label4.Location = new System.Drawing.Point(-57, 20);
            this.Label4.Name = "Label4";
            this.Label4.Size = new System.Drawing.Size(312, 16);
            this.Label4.TabIndex = 0;
            this.Label4.Text = "Welcome to the Official 12padams website!!!";
            // 
            // padamsbackgrounds
            // 
            this.padamsbackgrounds.AutoScroll = true;
            this.padamsbackgrounds.Controls.Add(this.Panel13);
            this.padamsbackgrounds.Controls.Add(this.Label33);
            this.padamsbackgrounds.Controls.Add(this.Label32);
            this.padamsbackgrounds.Location = new System.Drawing.Point(649, 3);
            this.padamsbackgrounds.Name = "padamsbackgrounds";
            this.padamsbackgrounds.Size = new System.Drawing.Size(266, 203);
            this.padamsbackgrounds.TabIndex = 6;
            // 
            // Panel13
            // 
            this.Panel13.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel13.Controls.Add(this.Previewimage);
            this.Panel13.Controls.Add(this.Button21);
            this.Panel13.Controls.Add(this.Button22);
            this.Panel13.Controls.Add(this.Label35);
            this.Panel13.Controls.Add(this.mclarinflimage);
            this.Panel13.Controls.Add(this.Button20);
            this.Panel13.Controls.Add(this.Button19);
            this.Panel13.Controls.Add(this.Label34);
            this.Panel13.Controls.Add(this.win95background);
            this.Panel13.Location = new System.Drawing.Point(46, 74);
            this.Panel13.Name = "Panel13";
            this.Panel13.Size = new System.Drawing.Size(8162, 118);
            this.Panel13.TabIndex = 2;
            // 
            // Previewimage
            // 
            this.Previewimage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Previewimage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Previewimage.Location = new System.Drawing.Point(246, 6);
            this.Previewimage.Name = "Previewimage";
            this.Previewimage.Size = new System.Drawing.Size(6745, 118);
            this.Previewimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.Previewimage.TabIndex = 1;
            this.Previewimage.TabStop = false;
            // 
            // Button21
            // 
            this.Button21.BackColor = System.Drawing.Color.Silver;
            this.Button21.Location = new System.Drawing.Point(95, 310);
            this.Button21.Name = "Button21";
            this.Button21.Size = new System.Drawing.Size(115, 23);
            this.Button21.TabIndex = 8;
            this.Button21.Text = "Set As Background";
            this.Button21.UseVisualStyleBackColor = false;
            // 
            // Button22
            // 
            this.Button22.BackColor = System.Drawing.Color.Silver;
            this.Button22.Location = new System.Drawing.Point(26, 310);
            this.Button22.Name = "Button22";
            this.Button22.Size = new System.Drawing.Size(63, 23);
            this.Button22.TabIndex = 7;
            this.Button22.Text = "Preview";
            this.Button22.UseVisualStyleBackColor = false;
            // 
            // Label35
            // 
            this.Label35.AutoSize = true;
            this.Label35.Location = new System.Drawing.Point(72, 176);
            this.Label35.Name = "Label35";
            this.Label35.Size = new System.Drawing.Size(87, 13);
            this.Label35.TabIndex = 6;
            this.Label35.Text = "1994 Mclaren F1";
            // 
            // mclarinflimage
            // 
            this.mclarinflimage.Location = new System.Drawing.Point(26, 192);
            this.mclarinflimage.Name = "mclarinflimage";
            this.mclarinflimage.Size = new System.Drawing.Size(184, 115);
            this.mclarinflimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.mclarinflimage.TabIndex = 5;
            this.mclarinflimage.TabStop = false;
            // 
            // Button20
            // 
            this.Button20.BackColor = System.Drawing.Color.Silver;
            this.Button20.Location = new System.Drawing.Point(95, 140);
            this.Button20.Name = "Button20";
            this.Button20.Size = new System.Drawing.Size(115, 23);
            this.Button20.TabIndex = 4;
            this.Button20.Text = "Set As Background";
            this.Button20.UseVisualStyleBackColor = false;
            // 
            // Button19
            // 
            this.Button19.BackColor = System.Drawing.Color.Silver;
            this.Button19.Location = new System.Drawing.Point(26, 140);
            this.Button19.Name = "Button19";
            this.Button19.Size = new System.Drawing.Size(63, 23);
            this.Button19.TabIndex = 3;
            this.Button19.Text = "Preview";
            this.Button19.UseVisualStyleBackColor = false;
            // 
            // Label34
            // 
            this.Label34.AutoSize = true;
            this.Label34.Location = new System.Drawing.Point(50, 6);
            this.Label34.Name = "Label34";
            this.Label34.Size = new System.Drawing.Size(128, 13);
            this.Label34.TabIndex = 2;
            this.Label34.Text = "Windows 95 Boot Screen";
            // 
            // win95background
            // 
            this.win95background.Location = new System.Drawing.Point(26, 22);
            this.win95background.Name = "win95background";
            this.win95background.Size = new System.Drawing.Size(184, 115);
            this.win95background.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.win95background.TabIndex = 0;
            this.win95background.TabStop = false;
            // 
            // Label33
            // 
            this.Label33.AutoSize = true;
            this.Label33.Location = new System.Drawing.Point(46, 47);
            this.Label33.Name = "Label33";
            this.Label33.Size = new System.Drawing.Size(622, 13);
            this.Label33.TabIndex = 1;
            this.Label33.Text = "Changing your desktop background shows the world that you are different and that " +
    "you well...  know how to change a background";
            // 
            // Label32
            // 
            this.Label32.AutoSize = true;
            this.Label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label32.Location = new System.Drawing.Point(42, 21);
            this.Label32.Name = "Label32";
            this.Label32.Size = new System.Drawing.Size(114, 20);
            this.Label32.TabIndex = 0;
            this.Label32.Text = "Backgrounds";
            // 
            // hotmailmain
            // 
            this.hotmailmain.AutoScroll = true;
            this.hotmailmain.BackColor = System.Drawing.Color.SteelBlue;
            this.hotmailmain.Controls.Add(this.PictureBox9);
            this.hotmailmain.Controls.Add(this.PictureBox10);
            this.hotmailmain.Controls.Add(this.Label31);
            this.hotmailmain.Controls.Add(this.Label30);
            this.hotmailmain.Controls.Add(this.Label29);
            this.hotmailmain.Controls.Add(this.PictureBox8);
            this.hotmailmain.Controls.Add(this.PictureBox7);
            this.hotmailmain.Controls.Add(this.PictureBox6);
            this.hotmailmain.Controls.Add(this.Label28);
            this.hotmailmain.Controls.Add(this.Label27);
            this.hotmailmain.Controls.Add(this.PictureBox5);
            this.hotmailmain.Controls.Add(this.RadioButton3);
            this.hotmailmain.Controls.Add(this.RadioButton2);
            this.hotmailmain.Controls.Add(this.RadioButton1);
            this.hotmailmain.Controls.Add(this.Button18);
            this.hotmailmain.Controls.Add(this.txtpassword);
            this.hotmailmain.Controls.Add(this.txtloginname);
            this.hotmailmain.Controls.Add(this.Label26);
            this.hotmailmain.Controls.Add(this.Label25);
            this.hotmailmain.Controls.Add(this.Label24);
            this.hotmailmain.Controls.Add(this.Label23);
            this.hotmailmain.Controls.Add(this.Panel11);
            this.hotmailmain.Location = new System.Drawing.Point(233, 313);
            this.hotmailmain.Name = "hotmailmain";
            this.hotmailmain.Size = new System.Drawing.Size(218, 127);
            this.hotmailmain.TabIndex = 5;
            // 
            // PictureBox9
            // 
            this.PictureBox9.Location = new System.Drawing.Point(248, 207);
            this.PictureBox9.Name = "PictureBox9";
            this.PictureBox9.Size = new System.Drawing.Size(200, 33);
            this.PictureBox9.TabIndex = 2;
            this.PictureBox9.TabStop = false;
            // 
            // PictureBox10
            // 
            this.PictureBox10.Location = new System.Drawing.Point(272, 246);
            this.PictureBox10.Name = "PictureBox10";
            this.PictureBox10.Size = new System.Drawing.Size(160, 26);
            this.PictureBox10.TabIndex = 3;
            this.PictureBox10.TabStop = false;
            // 
            // Label31
            // 
            this.Label31.AutoSize = true;
            this.Label31.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label31.ForeColor = System.Drawing.Color.White;
            this.Label31.Location = new System.Drawing.Point(513, 259);
            this.Label31.Name = "Label31";
            this.Label31.Size = new System.Drawing.Size(111, 15);
            this.Label31.TabIndex = 19;
            this.Label31.Text = "Privacy Statement";
            // 
            // Label30
            // 
            this.Label30.AutoSize = true;
            this.Label30.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label30.ForeColor = System.Drawing.Color.White;
            this.Label30.Location = new System.Drawing.Point(513, 234);
            this.Label30.Name = "Label30";
            this.Label30.Size = new System.Drawing.Size(77, 15);
            this.Label30.TabIndex = 18;
            this.Label30.Text = "Email Safety";
            // 
            // Label29
            // 
            this.Label29.AutoSize = true;
            this.Label29.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label29.ForeColor = System.Drawing.Color.White;
            this.Label29.Location = new System.Drawing.Point(513, 207);
            this.Label29.Name = "Label29";
            this.Label29.Size = new System.Drawing.Size(86, 15);
            this.Label29.TabIndex = 17;
            this.Label29.Text = "About Hotmail";
            // 
            // PictureBox8
            // 
            this.PictureBox8.Location = new System.Drawing.Point(478, 256);
            this.PictureBox8.Name = "PictureBox8";
            this.PictureBox8.Size = new System.Drawing.Size(17, 16);
            this.PictureBox8.TabIndex = 16;
            this.PictureBox8.TabStop = false;
            // 
            // PictureBox7
            // 
            this.PictureBox7.Location = new System.Drawing.Point(478, 231);
            this.PictureBox7.Name = "PictureBox7";
            this.PictureBox7.Size = new System.Drawing.Size(17, 16);
            this.PictureBox7.TabIndex = 15;
            this.PictureBox7.TabStop = false;
            // 
            // PictureBox6
            // 
            this.PictureBox6.Location = new System.Drawing.Point(478, 206);
            this.PictureBox6.Name = "PictureBox6";
            this.PictureBox6.Size = new System.Drawing.Size(17, 16);
            this.PictureBox6.TabIndex = 14;
            this.PictureBox6.TabStop = false;
            // 
            // Label28
            // 
            this.Label28.AutoSize = true;
            this.Label28.BackColor = System.Drawing.Color.Navy;
            this.Label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label28.ForeColor = System.Drawing.Color.White;
            this.Label28.Location = new System.Drawing.Point(463, 179);
            this.Label28.Name = "Label28";
            this.Label28.Size = new System.Drawing.Size(231, 16);
            this.Label28.TabIndex = 13;
            this.Label28.Text = "   I N F O                                         ";
            // 
            // Label27
            // 
            this.Label27.AutoSize = true;
            this.Label27.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label27.ForeColor = System.Drawing.Color.White;
            this.Label27.Location = new System.Drawing.Point(258, 140);
            this.Label27.Name = "Label27";
            this.Label27.Size = new System.Drawing.Size(139, 15);
            this.Label27.TabIndex = 12;
            this.Label27.Text = "Forgot Your Password?";
            // 
            // PictureBox5
            // 
            this.PictureBox5.Location = new System.Drawing.Point(235, 139);
            this.PictureBox5.Name = "PictureBox5";
            this.PictureBox5.Size = new System.Drawing.Size(17, 16);
            this.PictureBox5.TabIndex = 11;
            this.PictureBox5.TabStop = false;
            // 
            // RadioButton3
            // 
            this.RadioButton3.AutoSize = true;
            this.RadioButton3.Checked = true;
            this.RadioButton3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RadioButton3.ForeColor = System.Drawing.Color.White;
            this.RadioButton3.Location = new System.Drawing.Point(466, 109);
            this.RadioButton3.Name = "RadioButton3";
            this.RadioButton3.Size = new System.Drawing.Size(76, 17);
            this.RadioButton3.TabIndex = 10;
            this.RadioButton3.TabStop = true;
            this.RadioButton3.Text = "My Default";
            this.RadioButton3.UseVisualStyleBackColor = true;
            // 
            // RadioButton2
            // 
            this.RadioButton2.AutoSize = true;
            this.RadioButton2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RadioButton2.ForeColor = System.Drawing.Color.White;
            this.RadioButton2.Location = new System.Drawing.Point(345, 109);
            this.RadioButton2.Name = "RadioButton2";
            this.RadioButton2.Size = new System.Drawing.Size(76, 17);
            this.RadioButton2.TabIndex = 9;
            this.RadioButton2.Text = "No Frames";
            this.RadioButton2.UseVisualStyleBackColor = true;
            // 
            // RadioButton1
            // 
            this.RadioButton1.AutoSize = true;
            this.RadioButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RadioButton1.ForeColor = System.Drawing.Color.White;
            this.RadioButton1.Location = new System.Drawing.Point(235, 109);
            this.RadioButton1.Name = "RadioButton1";
            this.RadioButton1.Size = new System.Drawing.Size(59, 17);
            this.RadioButton1.TabIndex = 8;
            this.RadioButton1.Text = "Frames";
            this.RadioButton1.UseVisualStyleBackColor = true;
            // 
            // Button18
            // 
            this.Button18.BackColor = System.Drawing.Color.Silver;
            this.Button18.Location = new System.Drawing.Point(563, 81);
            this.Button18.Name = "Button18";
            this.Button18.Size = new System.Drawing.Size(60, 23);
            this.Button18.TabIndex = 7;
            this.Button18.Text = "Enter";
            this.Button18.UseVisualStyleBackColor = false;
            // 
            // txtpassword
            // 
            this.txtpassword.Location = new System.Drawing.Point(406, 83);
            this.txtpassword.Name = "txtpassword";
            this.txtpassword.Size = new System.Drawing.Size(138, 20);
            this.txtpassword.TabIndex = 6;
            this.txtpassword.UseSystemPasswordChar = true;
            // 
            // txtloginname
            // 
            this.txtloginname.Location = new System.Drawing.Point(235, 83);
            this.txtloginname.Name = "txtloginname";
            this.txtloginname.Size = new System.Drawing.Size(138, 20);
            this.txtloginname.TabIndex = 5;
            // 
            // Label26
            // 
            this.Label26.AutoSize = true;
            this.Label26.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label26.ForeColor = System.Drawing.Color.White;
            this.Label26.Location = new System.Drawing.Point(403, 59);
            this.Label26.Name = "Label26";
            this.Label26.Size = new System.Drawing.Size(65, 15);
            this.Label26.TabIndex = 4;
            this.Label26.Text = "Password";
            // 
            // Label25
            // 
            this.Label25.AutoSize = true;
            this.Label25.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label25.ForeColor = System.Drawing.Color.White;
            this.Label25.Location = new System.Drawing.Point(232, 59);
            this.Label25.Name = "Label25";
            this.Label25.Size = new System.Drawing.Size(74, 15);
            this.Label25.TabIndex = 3;
            this.Label25.Text = "Login Name";
            // 
            // Label24
            // 
            this.Label24.AutoSize = true;
            this.Label24.BackColor = System.Drawing.Color.Navy;
            this.Label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label24.ForeColor = System.Drawing.Color.White;
            this.Label24.Location = new System.Drawing.Point(229, 179);
            this.Label24.Name = "Label24";
            this.Label24.Size = new System.Drawing.Size(282, 16);
            this.Label24.TabIndex = 2;
            this.Label24.Text = "   V I S I T O R S                                         ";
            // 
            // Label23
            // 
            this.Label23.AutoSize = true;
            this.Label23.BackColor = System.Drawing.Color.Navy;
            this.Label23.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label23.ForeColor = System.Drawing.Color.White;
            this.Label23.Location = new System.Drawing.Point(229, 30);
            this.Label23.Name = "Label23";
            this.Label23.Size = new System.Drawing.Size(606, 16);
            this.Label23.TabIndex = 1;
            this.Label23.Text = "   R E G I S T E R E D   U S E R S                                               " +
    "                                              ";
            // 
            // Panel11
            // 
            this.Panel11.BackColor = System.Drawing.Color.White;
            this.Panel11.Controls.Add(this.PictureBox4);
            this.Panel11.Controls.Add(this.PictureBox3);
            this.Panel11.Location = new System.Drawing.Point(18, 0);
            this.Panel11.Name = "Panel11";
            this.Panel11.Size = new System.Drawing.Size(205, 445);
            this.Panel11.TabIndex = 0;
            // 
            // PictureBox4
            // 
            this.PictureBox4.Location = new System.Drawing.Point(35, 179);
            this.PictureBox4.Name = "PictureBox4";
            this.PictureBox4.Size = new System.Drawing.Size(160, 136);
            this.PictureBox4.TabIndex = 1;
            this.PictureBox4.TabStop = false;
            // 
            // PictureBox3
            // 
            this.PictureBox3.Location = new System.Drawing.Point(13, 23);
            this.PictureBox3.Name = "PictureBox3";
            this.PictureBox3.Size = new System.Drawing.Size(160, 136);
            this.PictureBox3.TabIndex = 0;
            this.PictureBox3.TabStop = false;
            //
            // hotmailpadams
            // 
            this.hotmailpadams.AutoScroll = true;
            this.hotmailpadams.BackColor = System.Drawing.Color.LightSteelBlue;
            this.hotmailpadams.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.hotmailpadams.Controls.Add(this.email1);
            this.hotmailpadams.Controls.Add(this.email3);
            this.hotmailpadams.Controls.Add(this.email2);
            this.hotmailpadams.Controls.Add(this.ListBox1);
            this.hotmailpadams.Controls.Add(this.PictureBox14);
            this.hotmailpadams.Controls.Add(this.PictureBox13);
            this.hotmailpadams.Controls.Add(this.PictureBox12);
            this.hotmailpadams.Location = new System.Drawing.Point(8, 321);
            this.hotmailpadams.Name = "hotmailpadams";
            this.hotmailpadams.Size = new System.Drawing.Size(214, 116);
            this.hotmailpadams.TabIndex = 10;
            // 
            // email1
            // 
            this.email1.Controls.Add(this.LinkLabel18);
            this.email1.Controls.Add(this.Label56);
            this.email1.Controls.Add(this.Label47);
            this.email1.Controls.Add(this.TextBox12);
            this.email1.Controls.Add(this.TextBox11);
            this.email1.Controls.Add(this.TextBox7);
            this.email1.Controls.Add(this.TextBox6);
            this.email1.Controls.Add(this.Label46);
            this.email1.Controls.Add(this.Label45);
            this.email1.Controls.Add(this.Label44);
            this.email1.Location = new System.Drawing.Point(207, 121);
            this.email1.Name = "email1";
            this.email1.Size = new System.Drawing.Size(465, 213);
            this.email1.TabIndex = 4;
            this.email1.Visible = false;
            // 
            // LinkLabel18
            // 
            this.LinkLabel18.AutoSize = true;
            this.LinkLabel18.Location = new System.Drawing.Point(83, 86);
            this.LinkLabel18.Name = "LinkLabel18";
            this.LinkLabel18.Size = new System.Drawing.Size(53, 13);
            this.LinkLabel18.TabIndex = 9;
            this.LinkLabel18.TabStop = true;
            this.LinkLabel18.Text = "hwcv.exe";
            // 
            // Label56
            // 
            this.Label56.AutoSize = true;
            this.Label56.Location = new System.Drawing.Point(7, 87);
            this.Label56.Name = "Label56";
            this.Label56.Size = new System.Drawing.Size(69, 13);
            this.Label56.TabIndex = 8;
            this.Label56.Text = "Attachments:";
            // 
            // Label47
            // 
            this.Label47.AutoSize = true;
            this.Label47.Location = new System.Drawing.Point(6, 110);
            this.Label47.Name = "Label47";
            this.Label47.Size = new System.Drawing.Size(34, 13);
            this.Label47.TabIndex = 7;
            this.Label47.Text = "Body:";
            // 
            // TextBox12
            // 
            this.TextBox12.Location = new System.Drawing.Point(55, 109);
            this.TextBox12.Multiline = true;
            this.TextBox12.Name = "TextBox12";
            this.TextBox12.Size = new System.Drawing.Size(394, 94);
            this.TextBox12.TabIndex = 6;
            this.TextBox12.Text = resources.GetString("TextBox12.Text");
            // 
            // TextBox11
            // 
            this.TextBox11.Location = new System.Drawing.Point(55, 58);
            this.TextBox11.Name = "TextBox11";
            this.TextBox11.Size = new System.Drawing.Size(394, 20);
            this.TextBox11.TabIndex = 5;
            this.TextBox11.Text = "12padams.com DataLog 1998";
            // 
            // TextBox7
            // 
            this.TextBox7.Location = new System.Drawing.Point(55, 32);
            this.TextBox7.Name = "TextBox7";
            this.TextBox7.Size = new System.Drawing.Size(394, 20);
            this.TextBox7.TabIndex = 4;
            this.TextBox7.Text = "12padams";
            // 
            // TextBox6
            // 
            this.TextBox6.Location = new System.Drawing.Point(55, 6);
            this.TextBox6.Name = "TextBox6";
            this.TextBox6.Size = new System.Drawing.Size(394, 20);
            this.TextBox6.TabIndex = 3;
            this.TextBox6.Text = "12padams Bot";
            // 
            // Label46
            // 
            this.Label46.AutoSize = true;
            this.Label46.Location = new System.Drawing.Point(6, 61);
            this.Label46.Name = "Label46";
            this.Label46.Size = new System.Drawing.Size(46, 13);
            this.Label46.TabIndex = 2;
            this.Label46.Text = "Subject:";
            // 
            // Label45
            // 
            this.Label45.AutoSize = true;
            this.Label45.Location = new System.Drawing.Point(6, 35);
            this.Label45.Name = "Label45";
            this.Label45.Size = new System.Drawing.Size(23, 13);
            this.Label45.TabIndex = 1;
            this.Label45.Text = "To:";
            // 
            // Label44
            // 
            this.Label44.AutoSize = true;
            this.Label44.Location = new System.Drawing.Point(6, 9);
            this.Label44.Name = "Label44";
            this.Label44.Size = new System.Drawing.Size(33, 13);
            this.Label44.TabIndex = 0;
            this.Label44.Text = "From:";
            // 
            // email3
            // 
            this.email3.Controls.Add(this.Label52);
            this.email3.Controls.Add(this.TextBox17);
            this.email3.Controls.Add(this.TextBox18);
            this.email3.Controls.Add(this.TextBox19);
            this.email3.Controls.Add(this.TextBox20);
            this.email3.Controls.Add(this.Label53);
            this.email3.Controls.Add(this.Label54);
            this.email3.Controls.Add(this.Label55);
            this.email3.Location = new System.Drawing.Point(175, 99);
            this.email3.Name = "email3";
            this.email3.Size = new System.Drawing.Size(465, 213);
            this.email3.TabIndex = 6;
            this.email3.Visible = false;
            // 
            // Label52
            // 
            this.Label52.AutoSize = true;
            this.Label52.Location = new System.Drawing.Point(6, 88);
            this.Label52.Name = "Label52";
            this.Label52.Size = new System.Drawing.Size(34, 13);
            this.Label52.TabIndex = 7;
            this.Label52.Text = "Body:";
            // 
            // TextBox17
            // 
            this.TextBox17.Location = new System.Drawing.Point(55, 85);
            this.TextBox17.Multiline = true;
            this.TextBox17.Name = "TextBox17";
            this.TextBox17.Size = new System.Drawing.Size(394, 116);
            this.TextBox17.TabIndex = 6;
            this.TextBox17.Text = resources.GetString("TextBox17.Text");
            // 
            // TextBox18
            // 
            this.TextBox18.Location = new System.Drawing.Point(55, 58);
            this.TextBox18.Name = "TextBox18";
            this.TextBox18.Size = new System.Drawing.Size(394, 20);
            this.TextBox18.TabIndex = 5;
            this.TextBox18.Text = "What\'s the secret to your website";
            // 
            // TextBox19
            // 
            this.TextBox19.Location = new System.Drawing.Point(55, 32);
            this.TextBox19.Name = "TextBox19";
            this.TextBox19.Size = new System.Drawing.Size(394, 20);
            this.TextBox19.TabIndex = 4;
            this.TextBox19.Text = "[email protected]";
            // 
            // TextBox20
            // 
            this.TextBox20.Location = new System.Drawing.Point(55, 6);
            this.TextBox20.Name = "TextBox20";
            this.TextBox20.Size = new System.Drawing.Size(394, 20);
            this.TextBox20.TabIndex = 3;
            this.TextBox20.Text = "[email protected]";
            // 
            // Label53
            // 
            this.Label53.AutoSize = true;
            this.Label53.Location = new System.Drawing.Point(6, 61);
            this.Label53.Name = "Label53";
            this.Label53.Size = new System.Drawing.Size(46, 13);
            this.Label53.TabIndex = 2;
            this.Label53.Text = "Subject:";
            // 
            // Label54
            // 
            this.Label54.AutoSize = true;
            this.Label54.Location = new System.Drawing.Point(6, 35);
            this.Label54.Name = "Label54";
            this.Label54.Size = new System.Drawing.Size(23, 13);
            this.Label54.TabIndex = 1;
            this.Label54.Text = "To:";
            // 
            // Label55
            // 
            this.Label55.AutoSize = true;
            this.Label55.Location = new System.Drawing.Point(6, 9);
            this.Label55.Name = "Label55";
            this.Label55.Size = new System.Drawing.Size(33, 13);
            this.Label55.TabIndex = 0;
            this.Label55.Text = "From:";
            // 
            // email2
            // 
            this.email2.Controls.Add(this.Label48);
            this.email2.Controls.Add(this.TextBox13);
            this.email2.Controls.Add(this.TextBox14);
            this.email2.Controls.Add(this.TextBox15);
            this.email2.Controls.Add(this.TextBox16);
            this.email2.Controls.Add(this.Label49);
            this.email2.Controls.Add(this.Label50);
            this.email2.Controls.Add(this.Label51);
            this.email2.Location = new System.Drawing.Point(161, 124);
            this.email2.Name = "email2";
            this.email2.Size = new System.Drawing.Size(465, 213);
            this.email2.TabIndex = 5;
            this.email2.Visible = false;
            // 
            // Label48
            // 
            this.Label48.AutoSize = true;
            this.Label48.Location = new System.Drawing.Point(6, 88);
            this.Label48.Name = "Label48";
            this.Label48.Size = new System.Drawing.Size(34, 13);
            this.Label48.TabIndex = 7;
            this.Label48.Text = "Body:";
            // 
            // TextBox13
            // 
            this.TextBox13.Location = new System.Drawing.Point(55, 85);
            this.TextBox13.Multiline = true;
            this.TextBox13.Name = "TextBox13";
            this.TextBox13.Size = new System.Drawing.Size(394, 116);
            this.TextBox13.TabIndex = 6;
            this.TextBox13.Text = "Hey How dare you ask me about that I am blocking your ip right now from my websit" +
    "e... And for the record don\'t waste your time theres nothing hidden on my websit" +
    "e!!!";
            // 
            // TextBox14
            // 
            this.TextBox14.Location = new System.Drawing.Point(55, 58);
            this.TextBox14.Name = "TextBox14";
            this.TextBox14.Size = new System.Drawing.Size(394, 20);
            this.TextBox14.TabIndex = 5;
            this.TextBox14.Text = "Re: What\'s the secret to your website";
            // 
            // TextBox15
            // 
            this.TextBox15.Location = new System.Drawing.Point(55, 32);
            this.TextBox15.Name = "TextBox15";
            this.TextBox15.Size = new System.Drawing.Size(394, 20);
            this.TextBox15.TabIndex = 4;
            this.TextBox15.Text = "[email protected]";
            // 
            // TextBox16
            // 
            this.TextBox16.Location = new System.Drawing.Point(55, 6);
            this.TextBox16.Name = "TextBox16";
            this.TextBox16.Size = new System.Drawing.Size(394, 20);
            this.TextBox16.TabIndex = 3;
            this.TextBox16.Text = "[email protected]";
            // 
            // Label49
            // 
            this.Label49.AutoSize = true;
            this.Label49.Location = new System.Drawing.Point(6, 61);
            this.Label49.Name = "Label49";
            this.Label49.Size = new System.Drawing.Size(46, 13);
            this.Label49.TabIndex = 2;
            this.Label49.Text = "Subject:";
            // 
            // Label50
            // 
            this.Label50.AutoSize = true;
            this.Label50.Location = new System.Drawing.Point(6, 35);
            this.Label50.Name = "Label50";
            this.Label50.Size = new System.Drawing.Size(23, 13);
            this.Label50.TabIndex = 1;
            this.Label50.Text = "To:";
            // 
            // Label51
            // 
            this.Label51.AutoSize = true;
            this.Label51.Location = new System.Drawing.Point(6, 9);
            this.Label51.Name = "Label51";
            this.Label51.Size = new System.Drawing.Size(33, 13);
            this.Label51.TabIndex = 0;
            this.Label51.Text = "From:";
            // 
            // ListBox1
            // 
            this.ListBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ListBox1.FormattingEnabled = true;
            this.ListBox1.Items.AddRange(new object[] {
            "12padams.com datalog 1998",
            "RE: What\'s the secrect to your website?",
            "What\'s the secret to your website?"});
            this.ListBox1.Location = new System.Drawing.Point(154, 59);
            this.ListBox1.Name = "ListBox1";
            this.ListBox1.Size = new System.Drawing.Size(518, 278);
            this.ListBox1.TabIndex = 3;
            // 
            // PictureBox14
            // 
            this.PictureBox14.Dock = System.Windows.Forms.DockStyle.Top;
            this.PictureBox14.Location = new System.Drawing.Point(154, 38);
            this.PictureBox14.Name = "PictureBox14";
            this.PictureBox14.Size = new System.Drawing.Size(518, 21);
            this.PictureBox14.TabIndex = 2;
            this.PictureBox14.TabStop = false;
            // 
            // PictureBox13
            // 
            this.PictureBox13.Dock = System.Windows.Forms.DockStyle.Top;
            this.PictureBox13.Location = new System.Drawing.Point(154, 0);
            this.PictureBox13.Name = "PictureBox13";
            this.PictureBox13.Size = new System.Drawing.Size(518, 38);
            this.PictureBox13.TabIndex = 1;
            this.PictureBox13.TabStop = false;
            // 
            // PictureBox12
            // 
            this.PictureBox12.Dock = System.Windows.Forms.DockStyle.Left;
            this.PictureBox12.Location = new System.Drawing.Point(0, 0);
            this.PictureBox12.Name = "PictureBox12";
            this.PictureBox12.Size = new System.Drawing.Size(154, 337);
            this.PictureBox12.TabIndex = 0;
            this.PictureBox12.TabStop = false;
            // 
            // googlealpha
            // 
            this.googlealpha.AutoScroll = true;
            this.googlealpha.Controls.Add(this.Label15);
            this.googlealpha.Controls.Add(this.Panel6);
            this.googlealpha.Controls.Add(this.Panel7);
            this.googlealpha.Controls.Add(this.Panel5);
            this.googlealpha.Controls.Add(this.Panel4);
            this.googlealpha.Controls.Add(this.PictureBox2);
            this.googlealpha.Location = new System.Drawing.Point(422, 8);
            this.googlealpha.Name = "googlealpha";
            this.googlealpha.Size = new System.Drawing.Size(213, 126);
            this.googlealpha.TabIndex = 3;
            // 
            // Label15
            // 
            this.Label15.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Label15.AutoSize = true;
            this.Label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label15.Location = new System.Drawing.Point(11, 370);
            this.Label15.Name = "Label15";
            this.Label15.Size = new System.Drawing.Size(163, 15);
            this.Label15.TabIndex = 4;
            this.Label15.Text = "Copyright ©1998 Google Inc.";
            // 
            // Panel6
            // 
            this.Panel6.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel6.BackColor = System.Drawing.Color.MediumTurquoise;
            this.Panel6.Controls.Add(this.LinkLabel13);
            this.Panel6.Controls.Add(this.LinkLabel10);
            this.Panel6.Controls.Add(this.LinkLabel11);
            this.Panel6.Controls.Add(this.LinkLabel12);
            this.Panel6.Controls.Add(this.LinkLabel9);
            this.Panel6.Controls.Add(this.LinkLabel8);
            this.Panel6.Controls.Add(this.LinkLabel7);
            this.Panel6.Location = new System.Drawing.Point(14, 227);
            this.Panel6.Name = "Panel6";
            this.Panel6.Size = new System.Drawing.Size(167, 124);
            this.Panel6.TabIndex = 3;
            // 
            // LinkLabel13
            // 
            this.LinkLabel13.AutoSize = true;
            this.LinkLabel13.Location = new System.Drawing.Point(19, 104);
            this.LinkLabel13.Name = "LinkLabel13";
            this.LinkLabel13.Size = new System.Drawing.Size(137, 13);
            this.LinkLabel13.TabIndex = 6;
            this.LinkLabel13.TabStop = true;
            this.LinkLabel13.Text = "Making Google! the Default";
            // 
            // LinkLabel10
            // 
            this.LinkLabel10.AutoSize = true;
            this.LinkLabel10.Location = new System.Drawing.Point(48, 89);
            this.LinkLabel10.Name = "LinkLabel10";
            this.LinkLabel10.Size = new System.Drawing.Size(76, 13);
            this.LinkLabel10.TabIndex = 5;
            this.LinkLabel10.TabStop = true;
            this.LinkLabel10.Text = "Google! Logos";
            // 
            // LinkLabel11
            // 
            this.LinkLabel11.AutoSize = true;
            this.LinkLabel11.Location = new System.Drawing.Point(48, 73);
            this.LinkLabel11.Name = "LinkLabel11";
            this.LinkLabel11.Size = new System.Drawing.Size(78, 13);
            this.LinkLabel11.TabIndex = 4;
            this.LinkLabel11.TabStop = true;
            this.LinkLabel11.Text = "Jobs at Google";
            // 
            // LinkLabel12
            // 
            this.LinkLabel12.AutoSize = true;
            this.LinkLabel12.Location = new System.Drawing.Point(49, 57);
            this.LinkLabel12.Name = "LinkLabel12";
            this.LinkLabel12.Size = new System.Drawing.Size(72, 13);
            this.LinkLabel12.TabIndex = 3;
            this.LinkLabel12.TabStop = true;
            this.LinkLabel12.Text = "Company Info";
            // 
            // LinkLabel9
            // 
            this.LinkLabel9.AutoSize = true;
            this.LinkLabel9.Location = new System.Drawing.Point(70, 41);
            this.LinkLabel9.Name = "LinkLabel9";
            this.LinkLabel9.Size = new System.Drawing.Size(32, 13);
            this.LinkLabel9.TabIndex = 2;
            this.LinkLabel9.TabStop = true;
            this.LinkLabel9.Text = "Help!";
            // 
            // LinkLabel8
            // 
            this.LinkLabel8.AutoSize = true;
            this.LinkLabel8.Location = new System.Drawing.Point(37, 25);
            this.LinkLabel8.Name = "LinkLabel8";
            this.LinkLabel8.Size = new System.Drawing.Size(103, 13);
            this.LinkLabel8.TabIndex = 1;
            this.LinkLabel8.TabStop = true;
            this.LinkLabel8.Text = "Press about Google!";
            // 
            // LinkLabel7
            // 
            this.LinkLabel7.AutoSize = true;
            this.LinkLabel7.Location = new System.Drawing.Point(42, 9);
            this.LinkLabel7.Name = "LinkLabel7";
            this.LinkLabel7.Size = new System.Drawing.Size(89, 13);
            this.LinkLabel7.TabIndex = 0;
            this.LinkLabel7.TabStop = true;
            this.LinkLabel7.Text = "Why use Google!";
            // 
            // Panel7
            // 
            this.Panel7.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel7.BackColor = System.Drawing.Color.LightSeaGreen;
            this.Panel7.Controls.Add(this.LinkLabel14);
            this.Panel7.Controls.Add(this.Button14);
            this.Panel7.Controls.Add(this.TextBox5);
            this.Panel7.Controls.Add(this.Label14);
            this.Panel7.Controls.Add(this.Label13);
            this.Panel7.Location = new System.Drawing.Point(184, 227);
            this.Panel7.Name = "Panel7";
            this.Panel7.Size = new System.Drawing.Size(164, 124);
            this.Panel7.TabIndex = 3;
            // 
            // LinkLabel14
            // 
            this.LinkLabel14.AutoSize = true;
            this.LinkLabel14.Location = new System.Drawing.Point(105, 84);
            this.LinkLabel14.Name = "LinkLabel14";
            this.LinkLabel14.Size = new System.Drawing.Size(43, 13);
            this.LinkLabel14.TabIndex = 4;
            this.LinkLabel14.TabStop = true;
            this.LinkLabel14.Text = "Archive";
            // 
            // Button14
            // 
            this.Button14.BackColor = System.Drawing.Color.Silver;
            this.Button14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Button14.Location = new System.Drawing.Point(17, 79);
            this.Button14.Name = "Button14";
            this.Button14.Size = new System.Drawing.Size(82, 23);
            this.Button14.TabIndex = 3;
            this.Button14.Text = "Subscribe";
            this.Button14.UseVisualStyleBackColor = false;
            // 
            // TextBox5
            // 
            this.TextBox5.Location = new System.Drawing.Point(12, 57);
            this.TextBox5.Name = "TextBox5";
            this.TextBox5.Size = new System.Drawing.Size(138, 20);
            this.TextBox5.TabIndex = 2;
            this.TextBox5.Text = "your e-mail";
            // 
            // Label14
            // 
            this.Label14.AutoSize = true;
            this.Label14.Location = new System.Drawing.Point(44, 42);
            this.Label14.Name = "Label14";
            this.Label14.Size = new System.Drawing.Size(87, 13);
            this.Label14.TabIndex = 1;
            this.Label14.Text = "updates monthly:";
            // 
            // Label13
            // 
            this.Label13.AutoSize = true;
            this.Label13.Location = new System.Drawing.Point(55, 25);
            this.Label13.Name = "Label13";
            this.Label13.Size = new System.Drawing.Size(64, 13);
            this.Label13.TabIndex = 0;
            this.Label13.Text = "Get Google!";
            // 
            // Panel5
            // 
            this.Panel5.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel5.BackColor = System.Drawing.Color.PaleTurquoise;
            this.Panel5.Controls.Add(this.LinkLabel6);
            this.Panel5.Controls.Add(this.LinkLabel5);
            this.Panel5.Controls.Add(this.Label12);
            this.Panel5.Location = new System.Drawing.Point(-153, 227);
            this.Panel5.Name = "Panel5";
            this.Panel5.Size = new System.Drawing.Size(164, 124);
            this.Panel5.TabIndex = 2;
            // 
            // LinkLabel6
            // 
            this.LinkLabel6.AutoSize = true;
            this.LinkLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LinkLabel6.Location = new System.Drawing.Point(43, 81);
            this.LinkLabel6.Name = "LinkLabel6";
            this.LinkLabel6.Size = new System.Drawing.Size(84, 16);
            this.LinkLabel6.TabIndex = 2;
            this.LinkLabel6.TabStop = true;
            this.LinkLabel6.Text = "Linux Search";
            // 
            // LinkLabel5
            // 
            this.LinkLabel5.AutoSize = true;
            this.LinkLabel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LinkLabel5.Location = new System.Drawing.Point(32, 64);
            this.LinkLabel5.Name = "LinkLabel5";
            this.LinkLabel5.Size = new System.Drawing.Size(104, 16);
            this.LinkLabel5.TabIndex = 1;
            this.LinkLabel5.TabStop = true;
            this.LinkLabel5.Text = "Stanford Search";
            // 
            // Label12
            // 
            this.Label12.AutoSize = true;
            this.Label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label12.Location = new System.Drawing.Point(26, 46);
            this.Label12.Name = "Label12";
            this.Label12.Size = new System.Drawing.Size(115, 16);
            this.Label12.TabIndex = 0;
            this.Label12.Text = "Special Searches";
            // 
            // Panel4
            // 
            this.Panel4.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel4.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Panel4.Controls.Add(this.Button13);
            this.Panel4.Controls.Add(this.Button12);
            this.Panel4.Controls.Add(this.TextBox4);
            this.Panel4.Controls.Add(this.Label11);
            this.Panel4.Location = new System.Drawing.Point(-153, 125);
            this.Panel4.Name = "Panel4";
            this.Panel4.Size = new System.Drawing.Size(501, 100);
            this.Panel4.TabIndex = 1;
            // 
            // Button13
            // 
            this.Button13.BackColor = System.Drawing.Color.Silver;
            this.Button13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Button13.Location = new System.Drawing.Point(253, 55);
            this.Button13.Name = "Button13";
            this.Button13.Size = new System.Drawing.Size(110, 25);
            this.Button13.TabIndex = 3;
            this.Button13.Text = "I\'m feeling lucky";
            this.Button13.UseVisualStyleBackColor = false;
            // 
            // Button12
            // 
            this.Button12.BackColor = System.Drawing.Color.Silver;
            this.Button12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Button12.Location = new System.Drawing.Point(141, 55);
            this.Button12.Name = "Button12";
            this.Button12.Size = new System.Drawing.Size(106, 25);
            this.Button12.TabIndex = 2;
            this.Button12.Text = "Google Search";
            this.Button12.UseVisualStyleBackColor = false;
            // 
            // TextBox4
            // 
            this.TextBox4.Location = new System.Drawing.Point(113, 26);
            this.TextBox4.Multiline = true;
            this.TextBox4.Name = "TextBox4";
            this.TextBox4.Size = new System.Drawing.Size(281, 24);
            this.TextBox4.TabIndex = 1;
            // 
            // Label11
            // 
            this.Label11.AutoSize = true;
            this.Label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label11.Location = new System.Drawing.Point(155, 6);
            this.Label11.Name = "Label11";
            this.Label11.Size = new System.Drawing.Size(186, 16);
            this.Label11.TabIndex = 0;
            this.Label11.Text = "Search the web using Google!";
            // 
            // PictureBox2
            // 
            this.PictureBox2.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.PictureBox2.Location = new System.Drawing.Point(-96, 7);
            this.PictureBox2.Name = "PictureBox2";
            this.PictureBox2.Size = new System.Drawing.Size(361, 106);
            this.PictureBox2.TabIndex = 0;
            this.PictureBox2.TabStop = false;
            // 
            // padamshidden
            // 
            this.padamshidden.AutoScroll = true;
            this.padamshidden.Controls.Add(this.TextBox10);
            this.padamshidden.Location = new System.Drawing.Point(671, 223);
            this.padamshidden.Name = "padamshidden";
            this.padamshidden.Size = new System.Drawing.Size(265, 91);
            this.padamshidden.TabIndex = 9;
            // 
            // TextBox10
            // 
            this.TextBox10.BackColor = System.Drawing.Color.White;
            this.TextBox10.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.TextBox10.Location = new System.Drawing.Point(10, 15);
            this.TextBox10.Multiline = true;
            this.TextBox10.Name = "TextBox10";
            this.TextBox10.ReadOnly = true;
            this.TextBox10.Size = new System.Drawing.Size(721, 409);
            this.TextBox10.TabIndex = 0;
            this.TextBox10.Text = resources.GetString("TextBox10.Text");
            // 
            // secretwebsite
            // 
            this.secretwebsite.AutoScroll = true;
            this.secretwebsite.BackColor = System.Drawing.Color.Black;
            this.secretwebsite.Controls.Add(this.TextBox9);
            this.secretwebsite.ForeColor = System.Drawing.Color.White;
            this.secretwebsite.Location = new System.Drawing.Point(460, 264);
            this.secretwebsite.Name = "secretwebsite";
            this.secretwebsite.Size = new System.Drawing.Size(197, 159);
            this.secretwebsite.TabIndex = 8;
            // 
            // TextBox9
            // 
            this.TextBox9.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.TextBox9.BackColor = System.Drawing.Color.Black;
            this.TextBox9.ForeColor = System.Drawing.Color.White;
            this.TextBox9.Location = new System.Drawing.Point(-296, 33);
            this.TextBox9.Multiline = true;
            this.TextBox9.Name = "TextBox9";
            this.TextBox9.ReadOnly = true;
            this.TextBox9.Size = new System.Drawing.Size(761, 375);
            this.TextBox9.TabIndex = 0;
            this.TextBox9.Text = resources.GetString("TextBox9.Text");
            this.TextBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // skindows95advertisment
            // 
            this.skindows95advertisment.AutoScroll = true;
            this.skindows95advertisment.Controls.Add(this.Label42);
            this.skindows95advertisment.Controls.Add(this.Label41);
            this.skindows95advertisment.Controls.Add(this.TextBox8);
            this.skindows95advertisment.Controls.Add(this.PictureBox11);
            this.skindows95advertisment.Controls.Add(this.Label40);
            this.skindows95advertisment.Controls.Add(this.Label39);
            this.skindows95advertisment.Location = new System.Drawing.Point(457, 140);
            this.skindows95advertisment.Name = "skindows95advertisment";
            this.skindows95advertisment.Size = new System.Drawing.Size(95, 95);
            this.skindows95advertisment.TabIndex = 7;
            // 
            // Label42
            // 
            this.Label42.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Label42.AutoSize = true;
            this.Label42.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label42.Location = new System.Drawing.Point(1258, 9);
            this.Label42.Name = "Label42";
            this.Label42.Size = new System.Drawing.Size(263, 18);
            this.Label42.TabIndex = 5;
            this.Label42.Text = "Get all you will ever need for only:";
            // 
            // Label41
            // 
            this.Label41.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Label41.AutoSize = true;
            this.Label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label41.Location = new System.Drawing.Point(1358, 33);
            this.Label41.Name = "Label41";
            this.Label41.Size = new System.Drawing.Size(71, 24);
            this.Label41.TabIndex = 4;
            this.Label41.Text = "$39.99";
            // 
            // TextBox8
            // 
            this.TextBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.TextBox8.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.TextBox8.Location = new System.Drawing.Point(51, 72);
            this.TextBox8.Multiline = true;
            this.TextBox8.Name = "TextBox8";
            this.TextBox8.ReadOnly = true;
            this.TextBox8.Size = new System.Drawing.Size(172, 6978);
            this.TextBox8.TabIndex = 3;
            this.TextBox8.Text = resources.GetString("TextBox8.Text");
            // 
            // PictureBox11
            // 
            this.PictureBox11.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.PictureBox11.Location = new System.Drawing.Point(1228, 60);
            this.PictureBox11.Name = "PictureBox11";
            this.PictureBox11.Size = new System.Drawing.Size(337, 386);
            this.PictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.PictureBox11.TabIndex = 2;
            this.PictureBox11.TabStop = false;
            // 
            // Label40
            // 
            this.Label40.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.Label40.AutoSize = true;
            this.Label40.Location = new System.Drawing.Point(48, 45);
            this.Label40.Name = "Label40";
            this.Label40.Size = new System.Drawing.Size(180, 13);
            this.Label40.TabIndex = 1;
            this.Label40.Text = "The one stop customization software";
            // 
            // Label39
            // 
            this.Label39.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.Label39.AutoSize = true;
            this.Label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label39.Location = new System.Drawing.Point(47, 25);
            this.Label39.Name = "Label39";
            this.Label39.Size = new System.Drawing.Size(110, 20);
            this.Label39.TabIndex = 0;
            this.Label39.Text = "Skindows 95";
            // 
            // googlemain
            // 
            this.googlemain.AutoScroll = true;
            this.googlemain.Controls.Add(this.googlebetalink);
            this.googlemain.Controls.Add(this.googleprototypelink);
            this.googlemain.Controls.Add(this.Label6);
            this.googlemain.Location = new System.Drawing.Point(52, 3);
            this.googlemain.Name = "googlemain";
            this.googlemain.Size = new System.Drawing.Size(38, 38);
            this.googlemain.TabIndex = 1;
            // 
            // googlebetalink
            // 
            this.googlebetalink.AutoSize = true;
            this.googlebetalink.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.googlebetalink.Location = new System.Drawing.Point(16, 82);
            this.googlebetalink.Name = "googlebetalink";
            this.googlebetalink.Size = new System.Drawing.Size(411, 16);
            this.googlebetalink.TabIndex = 2;
            this.googlebetalink.TabStop = true;
            this.googlebetalink.Text = "Might-work-some-of-the-time-prototype that is much more up to date. ";
            // 
            // googleprototypelink
            // 
            this.googleprototypelink.AutoSize = true;
            this.googleprototypelink.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.googleprototypelink.Location = new System.Drawing.Point(16, 64);
            this.googleprototypelink.Name = "googleprototypelink";
            this.googleprototypelink.Size = new System.Drawing.Size(205, 16);
            this.googleprototypelink.TabIndex = 1;
            this.googleprototypelink.TabStop = true;
            this.googleprototypelink.Text = "Google Search Engine Prototype";
            // 
            // Label6
            // 
            this.Label6.AutoSize = true;
            this.Label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label6.Location = new System.Drawing.Point(10, 15);
            this.Label6.Name = "Label6";
            this.Label6.Size = new System.Drawing.Size(276, 31);
            this.Label6.TabIndex = 0;
            this.Label6.Text = "Welcome To Google";
            // 
            // googleprototype
            // 
            this.googleprototype.AutoScroll = true;
            this.googleprototype.Controls.Add(this.Label10);
            this.googleprototype.Controls.Add(this.Panel3);
            this.googleprototype.Controls.Add(this.LinkLabel3);
            this.googleprototype.Controls.Add(this.LinkLabel2);
            this.googleprototype.Controls.Add(this.LinkLabel1);
            this.googleprototype.Controls.Add(this.Panel2);
            this.googleprototype.Controls.Add(this.pboxgoogleprototypelogo);
            this.googleprototype.Location = new System.Drawing.Point(6, 47);
            this.googleprototype.Name = "googleprototype";
            this.googleprototype.Size = new System.Drawing.Size(317, 260);
            this.googleprototype.TabIndex = 2;
            // 
            // Label10
            // 
            this.Label10.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Label10.AutoSize = true;
            this.Label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label10.Location = new System.Drawing.Point(38, 405);
            this.Label10.Name = "Label10";
            this.Label10.Size = new System.Drawing.Size(215, 15);
            this.Label10.TabIndex = 6;
            this.Label10.Text = "Copyright ©1997-8 Stanford University";
            // 
            // Panel3
            // 
            this.Panel3.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel3.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Panel3.Controls.Add(this.LinkLabel4);
            this.Panel3.Controls.Add(this.Button11);
            this.Panel3.Controls.Add(this.TextBox3);
            this.Panel3.Controls.Add(this.Label9);
            this.Panel3.Location = new System.Drawing.Point(-83, 334);
            this.Panel3.Name = "Panel3";
            this.Panel3.Size = new System.Drawing.Size(430, 65);
            this.Panel3.TabIndex = 5;
            // 
            // LinkLabel4
            // 
            this.LinkLabel4.AutoSize = true;
            this.LinkLabel4.Location = new System.Drawing.Point(301, 44);
            this.LinkLabel4.Name = "LinkLabel4";
            this.LinkLabel4.Size = new System.Drawing.Size(43, 13);
            this.LinkLabel4.TabIndex = 3;
            this.LinkLabel4.TabStop = true;
            this.LinkLabel4.Text = "Archive";
            // 
            // Button11
            // 
            this.Button11.BackColor = System.Drawing.Color.Silver;
            this.Button11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Button11.Location = new System.Drawing.Point(198, 34);
            this.Button11.Name = "Button11";
            this.Button11.Size = new System.Drawing.Size(96, 26);
            this.Button11.TabIndex = 2;
            this.Button11.Text = "Subscribe";
            this.Button11.UseVisualStyleBackColor = false;
            // 
            // TextBox3
            // 
            this.TextBox3.Location = new System.Drawing.Point(46, 36);
            this.TextBox3.Name = "TextBox3";
            this.TextBox3.Size = new System.Drawing.Size(146, 20);
            this.TextBox3.TabIndex = 1;
            this.TextBox3.Text = "your e-mail";
            // 
            // Label9
            // 
            this.Label9.AutoSize = true;
            this.Label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label9.Location = new System.Drawing.Point(111, 9);
            this.Label9.Name = "Label9";
            this.Label9.Size = new System.Drawing.Size(212, 16);
            this.Label9.TabIndex = 0;
            this.Label9.Text = "Get Google! updates monthly!";
            // 
            // LinkLabel3
            // 
            this.LinkLabel3.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.LinkLabel3.AutoSize = true;
            this.LinkLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LinkLabel3.Location = new System.Drawing.Point(28, 309);
            this.LinkLabel3.Name = "LinkLabel3";
            this.LinkLabel3.Size = new System.Drawing.Size(115, 18);
            this.LinkLabel3.TabIndex = 4;
            this.LinkLabel3.TabStop = true;
            this.LinkLabel3.Text = "Stanford Search";
            // 
            // LinkLabel2
            // 
            this.LinkLabel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.LinkLabel2.AutoSize = true;
            this.LinkLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LinkLabel2.Location = new System.Drawing.Point(141, 309);
            this.LinkLabel2.Name = "LinkLabel2";
            this.LinkLabel2.Size = new System.Drawing.Size(93, 18);
            this.LinkLabel2.TabIndex = 3;
            this.LinkLabel2.TabStop = true;
            this.LinkLabel2.Text = "Linux Search";
            // 
            // LinkLabel1
            // 
            this.LinkLabel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.LinkLabel1.AutoSize = true;
            this.LinkLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LinkLabel1.Location = new System.Drawing.Point(50, 271);
            this.LinkLabel1.Name = "LinkLabel1";
            this.LinkLabel1.Size = new System.Drawing.Size(162, 25);
            this.LinkLabel1.TabIndex = 2;
            this.LinkLabel1.TabStop = true;
            this.LinkLabel1.Text = "About Google!";
            // 
            // Panel2
            // 
            this.Panel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Panel2.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Panel2.Controls.Add(this.Label8);
            this.Panel2.Controls.Add(this.Button10);
            this.Panel2.Controls.Add(this.GoogleSearchButton);
            this.Panel2.Controls.Add(this.ComboBox1);
            this.Panel2.Controls.Add(this.TextBox2);
            this.Panel2.Controls.Add(this.Label7);
            this.Panel2.Location = new System.Drawing.Point(-83, 135);
            this.Panel2.Name = "Panel2";
            this.Panel2.Size = new System.Drawing.Size(430, 117);
            this.Panel2.TabIndex = 1;
            // 
            // Label8
            // 
            this.Label8.AutoSize = true;
            this.Label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label8.Location = new System.Drawing.Point(18, 91);
            this.Label8.Name = "Label8";
            this.Label8.Size = new System.Drawing.Size(410, 16);
            this.Label8.TabIndex = 5;
            this.Label8.Text = "Index contains ~25 million pages (soon to be much bigger)";
            // 
            // Button10
            // 
            this.Button10.BackColor = System.Drawing.Color.Silver;
            this.Button10.Location = new System.Drawing.Point(263, 65);
            this.Button10.Name = "Button10";
            this.Button10.Size = new System.Drawing.Size(104, 23);
            this.Button10.TabIndex = 4;
            this.Button10.Text = "I\'m Feeling Lucky";
            this.Button10.UseVisualStyleBackColor = false;
            // 
            // GoogleSearchButton
            // 
            this.GoogleSearchButton.BackColor = System.Drawing.Color.Silver;
            this.GoogleSearchButton.Location = new System.Drawing.Point(153, 65);
            this.GoogleSearchButton.Name = "GoogleSearchButton";
            this.GoogleSearchButton.Size = new System.Drawing.Size(104, 23);
            this.GoogleSearchButton.TabIndex = 3;
            this.GoogleSearchButton.Text = "Google Search";
            this.GoogleSearchButton.UseVisualStyleBackColor = false;
            // 
            // ComboBox1
            // 
            this.ComboBox1.FormattingEnabled = true;
            this.ComboBox1.Items.AddRange(new object[] {
            "10 results",
            "30 results",
            "100 results"});
            this.ComboBox1.Location = new System.Drawing.Point(54, 65);
            this.ComboBox1.Name = "ComboBox1";
            this.ComboBox1.Size = new System.Drawing.Size(92, 21);
            this.ComboBox1.TabIndex = 2;
            this.ComboBox1.Text = "10 results";
            // 
            // TextBox2
            // 
            this.TextBox2.Location = new System.Drawing.Point(83, 39);
            this.TextBox2.Name = "TextBox2";
            this.TextBox2.Size = new System.Drawing.Size(261, 20);
            this.TextBox2.TabIndex = 1;
            // 
            // Label7
            // 
            this.Label7.AutoSize = true;
            this.Label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Label7.Location = new System.Drawing.Point(121, 15);
            this.Label7.Name = "Label7";
            this.Label7.Size = new System.Drawing.Size(186, 16);
            this.Label7.TabIndex = 0;
            this.Label7.Text = "Search the web using Google!";
            // 
            // pboxgoogleprototypelogo
            // 
            this.pboxgoogleprototypelogo.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.pboxgoogleprototypelogo.Location = new System.Drawing.Point(-49, 6);
            this.pboxgoogleprototypelogo.Name = "pboxgoogleprototypelogo";
            this.pboxgoogleprototypelogo.Size = new System.Drawing.Size(349, 116);
            this.pboxgoogleprototypelogo.TabIndex = 0;
            this.pboxgoogleprototypelogo.TabStop = false;
            // 
            // Panel14
            // 
            this.Panel14.Controls.Add(this.GoButton);
            this.Panel14.Controls.Add(this.addressbar);
            this.Panel14.Controls.Add(this.Label1);
            this.Panel14.Dock = System.Windows.Forms.DockStyle.Top;
            this.Panel14.Location = new System.Drawing.Point(0, 73);
            this.Panel14.Name = "Panel14";
            this.Panel14.Size = new System.Drawing.Size(959, 38);
            this.Panel14.TabIndex = 13;
            // 
            // GoButton
            // 
            this.GoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.GoButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.GoButton.Location = new System.Drawing.Point(898, 5);
            this.GoButton.Name = "GoButton";
            this.GoButton.Size = new System.Drawing.Size(55, 28);
            this.GoButton.TabIndex = 2;
            this.GoButton.Text = "Go";
            this.GoButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.GoButton.UseVisualStyleBackColor = true;
            this.GoButton.Click += new System.EventHandler(this.GoButton_Click);
            // 
            // addressbar
            // 
            this.addressbar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.addressbar.FormattingEnabled = true;
            this.addressbar.Location = new System.Drawing.Point(58, 9);
            this.addressbar.Name = "addressbar";
            this.addressbar.Size = new System.Drawing.Size(812, 21);
            this.addressbar.TabIndex = 1;
            this.addressbar.Text = "www.microsoft.com/internetexplorer4/welcome";
            // 
            // Label1
            // 
            this.Label1.AutoSize = true;
            this.Label1.Location = new System.Drawing.Point(4, 13);
            this.Label1.Name = "Label1";
            this.Label1.Size = new System.Drawing.Size(48, 13);
            this.Label1.TabIndex = 0;
            this.Label1.Text = "Address:";
            // 
            // Panel1
            // 
            this.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Panel1.Controls.Add(this.Button30);
            this.Panel1.Controls.Add(this.Button29);
            this.Panel1.Controls.Add(this.Button28);
            this.Panel1.Controls.Add(this.Button27);
            this.Panel1.Controls.Add(this.Button7);
            this.Panel1.Controls.Add(this.Button6);
            this.Panel1.Controls.Add(this.HomeButton);
            this.Panel1.Controls.Add(this.Button4);
            this.Panel1.Controls.Add(this.Button3);
            this.Panel1.Controls.Add(this.ForwardButton);
            this.Panel1.Controls.Add(this.BackButton);
            this.Panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.Panel1.Location = new System.Drawing.Point(0, 24);
            this.Panel1.Name = "Panel1";
            this.Panel1.Size = new System.Drawing.Size(959, 49);
            this.Panel1.TabIndex = 7;
            // 
            // Button30
            // 
            this.Button30.Dock = System.Windows.Forms.DockStyle.Left;
            this.Button30.FlatAppearance.BorderSize = 0;
            this.Button30.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Button30.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.Button30.Location = new System.Drawing.Point(750, 0);
            this.Button30.Name = "Button30";
            this.Button30.Size = new System.Drawing.Size(75, 47);
            this.Button30.TabIndex = 10;
            this.Button30.Text = "Print";
            this.Button30.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.Button30.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.Button30.UseVisualStyleBackColor = true;
            // 
            // Button29
            // 
            this.Button29.Dock = System.Windows.Forms.DockStyle.Left;
            this.Button29.FlatAppearance.BorderSize = 0;
            this.Button29.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Button29.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.Button29.Location = new System.Drawing.Point(675, 0);
            this.Button29.Name = "Button29";
            this.Button29.Size = new System.Drawing.Size(75, 47);
            this.Button29.TabIndex = 9;
            this.Button29.Text = "Mail";
            this.Button29.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.Button29.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.Button29.UseVisualStyleBackColor = true;
            // 
            // Button28
            // 
            this.Button28.Dock = System.Windows.Forms.DockStyle.Left;
            this.Button28.FlatAppearance.BorderSize = 0;
            this.Button28.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Button28.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.Button28.Location = new System.Drawing.Point(600, 0);
            this.Button28.Name = "Button28";
            this.Button28.Size = new System.Drawing.Size(75, 47);
            this.Button28.TabIndex = 8;
            this.Button28.Text = "Full Screen";
            this.Button28.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.Button28.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.Button28.UseVisualStyleBackColor = true;
            // 
            // Button27
            // 
            this.Button27.Dock = System.Windows.Forms.DockStyle.Left;
            this.Button27.FlatAppearance.BorderSize = 0;
            this.Button27.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Button27.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.Button27.Location = new System.Drawing.Point(525, 0);
            this.Button27.Name = "Button27";
            this.Button27.Size = new System.Drawing.Size(75, 47);
            this.Button27.TabIndex = 7;
            this.Button27.Text = "Channels";
            this.Button27.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.Button27.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.Button27.UseVisualStyleBackColor = true;
            // 
            // Button7
            // 
            this.Button7.Dock = System.Windows.Forms.DockStyle.Left;
            this.Button7.FlatAppearance.BorderSize = 0;
            this.Button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Button7.Location = new System.Drawing.Point(450, 0);
            this.Button7.Name = "Button7";
            this.Button7.Size = new System.Drawing.Size(75, 47);
            this.Button7.TabIndex = 6;
            this.Button7.Text = "History";
            this.Button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.Button7.UseVisualStyleBackColor = true;
            // 
            // Button6
            // 
            this.Button6.Dock = System.Windows.Forms.DockStyle.Left;
            this.Button6.FlatAppearance.BorderSize = 0;
            this.Button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Button6.Location = new System.Drawing.Point(375, 0);
            this.Button6.Name = "Button6";
            this.Button6.Size = new System.Drawing.Size(75, 47);
            this.Button6.TabIndex = 5;
            this.Button6.Text = "Favorites";
            this.Button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.Button6.UseVisualStyleBackColor = true;
            // 
            // HomeButton
            // 
            this.HomeButton.Dock = System.Windows.Forms.DockStyle.Left;
            this.HomeButton.FlatAppearance.BorderSize = 0;
            this.HomeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.HomeButton.Location = new System.Drawing.Point(300, 0);
            this.HomeButton.Name = "HomeButton";
            this.HomeButton.Size = new System.Drawing.Size(75, 47);
            this.HomeButton.TabIndex = 4;
            this.HomeButton.Text = "Home";
            this.HomeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.HomeButton.UseVisualStyleBackColor = true;
            this.HomeButton.Click += new System.EventHandler(this.HomeButton_Click);
            // 
            // Button4
            // 
            this.Button4.Dock = System.Windows.Forms.DockStyle.Left;
            this.Button4.FlatAppearance.BorderSize = 0;
            this.Button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Button4.Location = new System.Drawing.Point(225, 0);
            this.Button4.Name = "Button4";
            this.Button4.Size = new System.Drawing.Size(75, 47);
            this.Button4.TabIndex = 3;
            this.Button4.Text = "Refresh";
            this.Button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.Button4.UseVisualStyleBackColor = true;
            // 
            // Button3
            // 
            this.Button3.Dock = System.Windows.Forms.DockStyle.Left;
            this.Button3.FlatAppearance.BorderSize = 0;
            this.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.Button3.Location = new System.Drawing.Point(150, 0);
            this.Button3.Name = "Button3";
            this.Button3.Size = new System.Drawing.Size(75, 47);
            this.Button3.TabIndex = 2;
            this.Button3.Text = "Stop";
            this.Button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.Button3.UseVisualStyleBackColor = true;
            // 
            // ForwardButton
            // 
            this.ForwardButton.Dock = System.Windows.Forms.DockStyle.Left;
            this.ForwardButton.FlatAppearance.BorderSize = 0;
            this.ForwardButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.ForwardButton.Location = new System.Drawing.Point(75, 0);
            this.ForwardButton.Name = "ForwardButton";
            this.ForwardButton.Size = new System.Drawing.Size(75, 47);
            this.ForwardButton.TabIndex = 1;
            this.ForwardButton.Text = "Forward";
            this.ForwardButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.ForwardButton.UseVisualStyleBackColor = true;
            this.ForwardButton.Click += new System.EventHandler(this.ForwardButton_Click);
            // 
            // BackButton
            // 
            this.BackButton.Dock = System.Windows.Forms.DockStyle.Left;
            this.BackButton.FlatAppearance.BorderSize = 0;
            this.BackButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.BackButton.Location = new System.Drawing.Point(0, 0);
            this.BackButton.Name = "BackButton";
            this.BackButton.Size = new System.Drawing.Size(75, 47);
            this.BackButton.TabIndex = 0;
            this.BackButton.Text = "Back";
            this.BackButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.BackButton.UseVisualStyleBackColor = true;
            this.BackButton.Click += new System.EventHandler(this.BackButton_Click);
            // 
            // PictureBox1
            // 
            this.PictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.PictureBox1.Location = new System.Drawing.Point(915, 23);
            this.PictureBox1.Name = "PictureBox1";
            this.PictureBox1.Size = new System.Drawing.Size(38, 21);
            this.PictureBox1.TabIndex = 10;
            this.PictureBox1.TabStop = false;
            // 
            // MenuStrip3
            // 
            this.MenuStrip3.BackColor = System.Drawing.Color.Silver;
            this.MenuStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem1,
            this.ToolStripMenuItem22,
            this.ToolStripMenuItem28,
            this.ToolStripMenuItem78,
            this.ToolStripMenuItem73,
            this.ToolStripMenuItem88});
            this.MenuStrip3.Location = new System.Drawing.Point(0, 0);
            this.MenuStrip3.Name = "MenuStrip3";
            this.MenuStrip3.Size = new System.Drawing.Size(959, 24);
            this.MenuStrip3.TabIndex = 11;
            this.MenuStrip3.Text = "MenuStrip1";
            // 
            // ToolStripMenuItem1
            // 
            this.ToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem2,
            this.ToolStripMenuItem8,
            this.ToolStripMenuItem9,
            this.ToolStripMenuItem10,
            this.ToolStripMenuItem11,
            this.ToolStripMenuItem12,
            this.ToolStripMenuItem13,
            this.ToolStripMenuItem14,
            this.ToolStripMenuItem18,
            this.ToolStripMenuItem19,
            this.ToolStripMenuItem20,
            this.ToolStripMenuItem21});
            this.ToolStripMenuItem1.Name = "ToolStripMenuItem1";
            this.ToolStripMenuItem1.Size = new System.Drawing.Size(37, 20);
            this.ToolStripMenuItem1.Text = "File";
            // 
            // ToolStripMenuItem2
            // 
            this.ToolStripMenuItem2.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem3,
            this.ToolStripMenuItem4,
            this.ToolStripMenuItem5,
            this.ToolStripMenuItem6,
            this.ToolStripMenuItem7});
            this.ToolStripMenuItem2.Name = "ToolStripMenuItem2";
            this.ToolStripMenuItem2.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem2.Text = "New";
            // 
            // ToolStripMenuItem3
            // 
            this.ToolStripMenuItem3.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem3.Name = "ToolStripMenuItem3";
            this.ToolStripMenuItem3.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem3.Text = "Window       Ctrl+N";
            // 
            // ToolStripMenuItem4
            // 
            this.ToolStripMenuItem4.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem4.Name = "ToolStripMenuItem4";
            this.ToolStripMenuItem4.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem4.Text = "Message";
            // 
            // ToolStripMenuItem5
            // 
            this.ToolStripMenuItem5.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem5.Name = "ToolStripMenuItem5";
            this.ToolStripMenuItem5.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem5.Text = "Post";
            // 
            // ToolStripMenuItem6
            // 
            this.ToolStripMenuItem6.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem6.Name = "ToolStripMenuItem6";
            this.ToolStripMenuItem6.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem6.Text = "Contact";
            // 
            // ToolStripMenuItem7
            // 
            this.ToolStripMenuItem7.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem7.Name = "ToolStripMenuItem7";
            this.ToolStripMenuItem7.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem7.Text = "Internet Call";
            // 
            // ToolStripMenuItem8
            // 
            this.ToolStripMenuItem8.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem8.Name = "ToolStripMenuItem8";
            this.ToolStripMenuItem8.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem8.Text = "Open...                    Ctrl+O";
            // 
            // ToolStripMenuItem9
            // 
            this.ToolStripMenuItem9.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem9.Name = "ToolStripMenuItem9";
            this.ToolStripMenuItem9.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem9.Text = "Edit with Windows Notepad";
            // 
            // ToolStripMenuItem10
            // 
            this.ToolStripMenuItem10.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem10.Name = "ToolStripMenuItem10";
            this.ToolStripMenuItem10.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem10.Text = "Save                         Ctrl+S";
            // 
            // ToolStripMenuItem11
            // 
            this.ToolStripMenuItem11.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem11.Name = "ToolStripMenuItem11";
            this.ToolStripMenuItem11.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem11.Text = "Save As...";
            // 
            // ToolStripMenuItem12
            // 
            this.ToolStripMenuItem12.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem12.Name = "ToolStripMenuItem12";
            this.ToolStripMenuItem12.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem12.Text = "Print Setup...";
            // 
            // ToolStripMenuItem13
            // 
            this.ToolStripMenuItem13.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem13.Name = "ToolStripMenuItem13";
            this.ToolStripMenuItem13.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem13.Text = "Print...";
            // 
            // ToolStripMenuItem14
            // 
            this.ToolStripMenuItem14.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem14.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem15,
            this.ToolStripMenuItem16,
            this.ToolStripMenuItem17});
            this.ToolStripMenuItem14.Name = "ToolStripMenuItem14";
            this.ToolStripMenuItem14.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem14.Text = "Send";
            // 
            // ToolStripMenuItem15
            // 
            this.ToolStripMenuItem15.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem15.Name = "ToolStripMenuItem15";
            this.ToolStripMenuItem15.Size = new System.Drawing.Size(179, 22);
            this.ToolStripMenuItem15.Text = "Page by E-mail...";
            // 
            // ToolStripMenuItem16
            // 
            this.ToolStripMenuItem16.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem16.Name = "ToolStripMenuItem16";
            this.ToolStripMenuItem16.Size = new System.Drawing.Size(179, 22);
            this.ToolStripMenuItem16.Text = "Link by E-mail...";
            // 
            // ToolStripMenuItem17
            // 
            this.ToolStripMenuItem17.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem17.Name = "ToolStripMenuItem17";
            this.ToolStripMenuItem17.Size = new System.Drawing.Size(179, 22);
            this.ToolStripMenuItem17.Text = "Shortcut to Desktop";
            // 
            // ToolStripMenuItem18
            // 
            this.ToolStripMenuItem18.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem18.Name = "ToolStripMenuItem18";
            this.ToolStripMenuItem18.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem18.Text = "Import and Export...";
            // 
            // ToolStripMenuItem19
            // 
            this.ToolStripMenuItem19.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem19.Name = "ToolStripMenuItem19";
            this.ToolStripMenuItem19.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem19.Text = "Properties";
            // 
            // ToolStripMenuItem20
            // 
            this.ToolStripMenuItem20.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem20.Name = "ToolStripMenuItem20";
            this.ToolStripMenuItem20.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem20.Text = "Work Offline";
            // 
            // ToolStripMenuItem21
            // 
            this.ToolStripMenuItem21.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem21.Name = "ToolStripMenuItem21";
            this.ToolStripMenuItem21.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem21.Text = "Close";
            // 
            // ToolStripMenuItem22
            // 
            this.ToolStripMenuItem22.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem23,
            this.ToolStripMenuItem24,
            this.ToolStripMenuItem25,
            this.ToolStripMenuItem26,
            this.ToolStripMenuItem27});
            this.ToolStripMenuItem22.Name = "ToolStripMenuItem22";
            this.ToolStripMenuItem22.Size = new System.Drawing.Size(39, 20);
            this.ToolStripMenuItem22.Text = "Edit";
            // 
            // ToolStripMenuItem23
            // 
            this.ToolStripMenuItem23.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem23.Name = "ToolStripMenuItem23";
            this.ToolStripMenuItem23.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem23.Text = "Cut                               Ctrl+X";
            // 
            // ToolStripMenuItem24
            // 
            this.ToolStripMenuItem24.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem24.Name = "ToolStripMenuItem24";
            this.ToolStripMenuItem24.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem24.Text = "Copy                            Ctrl+C";
            // 
            // ToolStripMenuItem25
            // 
            this.ToolStripMenuItem25.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem25.Name = "ToolStripMenuItem25";
            this.ToolStripMenuItem25.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem25.Text = "Paste                            Ctrl+V";
            // 
            // ToolStripMenuItem26
            // 
            this.ToolStripMenuItem26.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem26.Name = "ToolStripMenuItem26";
            this.ToolStripMenuItem26.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem26.Text = "Select All                     Ctrl+A";
            // 
            // ToolStripMenuItem27
            // 
            this.ToolStripMenuItem27.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem27.Name = "ToolStripMenuItem27";
            this.ToolStripMenuItem27.Size = new System.Drawing.Size(221, 22);
            this.ToolStripMenuItem27.Text = "Find (on This Page)... Ctrl+F";
            // 
            // ToolStripMenuItem28
            // 
            this.ToolStripMenuItem28.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem29,
            this.ToolStripMenuItem35,
            this.ToolStripMenuItem36,
            this.ToolStripMenuItem41,
            this.ToolStripMenuItem43,
            this.ToolStripMenuItem44,
            this.ToolStripMenuItem45,
            this.ToolStripMenuItem51,
            this.ToolStripMenuItem71,
            this.ToolStripMenuItem72});
            this.ToolStripMenuItem28.Name = "ToolStripMenuItem28";
            this.ToolStripMenuItem28.Size = new System.Drawing.Size(44, 20);
            this.ToolStripMenuItem28.Text = "View";
            // 
            // ToolStripMenuItem29
            // 
            this.ToolStripMenuItem29.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem29.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem30,
            this.ToolStripMenuItem31,
            this.ToolStripMenuItem32,
            this.ToolStripMenuItem33,
            this.ToolStripMenuItem34});
            this.ToolStripMenuItem29.Name = "ToolStripMenuItem29";
            this.ToolStripMenuItem29.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem29.Text = "Toolbars";
            // 
            // ToolStripMenuItem30
            // 
            this.ToolStripMenuItem30.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem30.Name = "ToolStripMenuItem30";
            this.ToolStripMenuItem30.Size = new System.Drawing.Size(165, 22);
            this.ToolStripMenuItem30.Text = "Standard Buttons";
            // 
            // ToolStripMenuItem31
            // 
            this.ToolStripMenuItem31.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem31.Name = "ToolStripMenuItem31";
            this.ToolStripMenuItem31.Size = new System.Drawing.Size(165, 22);
            this.ToolStripMenuItem31.Text = "Address Bar";
            // 
            // ToolStripMenuItem32
            // 
            this.ToolStripMenuItem32.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem32.Name = "ToolStripMenuItem32";
            this.ToolStripMenuItem32.Size = new System.Drawing.Size(165, 22);
            this.ToolStripMenuItem32.Text = "Links";
            // 
            // ToolStripMenuItem33
            // 
            this.ToolStripMenuItem33.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem33.Name = "ToolStripMenuItem33";
            this.ToolStripMenuItem33.Size = new System.Drawing.Size(165, 22);
            this.ToolStripMenuItem33.Text = "Radio";
            // 
            // ToolStripMenuItem34
            // 
            this.ToolStripMenuItem34.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem34.Name = "ToolStripMenuItem34";
            this.ToolStripMenuItem34.Size = new System.Drawing.Size(165, 22);
            this.ToolStripMenuItem34.Text = "Customize...";
            // 
            // ToolStripMenuItem35
            // 
            this.ToolStripMenuItem35.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem35.Name = "ToolStripMenuItem35";
            this.ToolStripMenuItem35.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem35.Text = "Status Bar";
            // 
            // ToolStripMenuItem36
            // 
            this.ToolStripMenuItem36.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem36.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem37,
            this.ToolStripMenuItem38,
            this.ToolStripMenuItem39,
            this.ToolStripMenuItem40});
            this.ToolStripMenuItem36.Name = "ToolStripMenuItem36";
            this.ToolStripMenuItem36.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem36.Text = "Explorer Bar";
            // 
            // ToolStripMenuItem37
            // 
            this.ToolStripMenuItem37.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem37.Name = "ToolStripMenuItem37";
            this.ToolStripMenuItem37.Size = new System.Drawing.Size(184, 22);
            this.ToolStripMenuItem37.Text = "Search             Ctrl+E";
            // 
            // ToolStripMenuItem38
            // 
            this.ToolStripMenuItem38.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem38.Name = "ToolStripMenuItem38";
            this.ToolStripMenuItem38.Size = new System.Drawing.Size(184, 22);
            this.ToolStripMenuItem38.Text = "Favorites         Ctrl+I";
            // 
            // ToolStripMenuItem39
            // 
            this.ToolStripMenuItem39.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem39.Name = "ToolStripMenuItem39";
            this.ToolStripMenuItem39.Size = new System.Drawing.Size(184, 22);
            this.ToolStripMenuItem39.Text = "History            Ctrl+H";
            // 
            // ToolStripMenuItem40
            // 
            this.ToolStripMenuItem40.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem40.Name = "ToolStripMenuItem40";
            this.ToolStripMenuItem40.Size = new System.Drawing.Size(184, 22);
            this.ToolStripMenuItem40.Text = "Tip of the Day";
            // 
            // ToolStripMenuItem41
            // 
            this.ToolStripMenuItem41.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem41.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem42});
            this.ToolStripMenuItem41.Name = "ToolStripMenuItem41";
            this.ToolStripMenuItem41.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem41.Text = "Go To";
            // 
            // ToolStripMenuItem42
            // 
            this.ToolStripMenuItem42.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem42.Name = "ToolStripMenuItem42";
            this.ToolStripMenuItem42.Size = new System.Drawing.Size(136, 22);
            this.ToolStripMenuItem42.Text = "Home Page";
            // 
            // ToolStripMenuItem43
            // 
            this.ToolStripMenuItem43.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem43.Name = "ToolStripMenuItem43";
            this.ToolStripMenuItem43.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem43.Text = "Stop                 Esc";
            // 
            // ToolStripMenuItem44
            // 
            this.ToolStripMenuItem44.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem44.Name = "ToolStripMenuItem44";
            this.ToolStripMenuItem44.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem44.Text = "Refresh            F5";
            // 
            // ToolStripMenuItem45
            // 
            this.ToolStripMenuItem45.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem45.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem46,
            this.ToolStripMenuItem47,
            this.ToolStripMenuItem48,
            this.ToolStripMenuItem49,
            this.ToolStripMenuItem50});
            this.ToolStripMenuItem45.Name = "ToolStripMenuItem45";
            this.ToolStripMenuItem45.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem45.Text = "Text Size";
            // 
            // ToolStripMenuItem46
            // 
            this.ToolStripMenuItem46.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem46.Name = "ToolStripMenuItem46";
            this.ToolStripMenuItem46.Size = new System.Drawing.Size(119, 22);
            this.ToolStripMenuItem46.Text = "Largest";
            // 
            // ToolStripMenuItem47
            // 
            this.ToolStripMenuItem47.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem47.Name = "ToolStripMenuItem47";
            this.ToolStripMenuItem47.Size = new System.Drawing.Size(119, 22);
            this.ToolStripMenuItem47.Text = "Larger";
            // 
            // ToolStripMenuItem48
            // 
            this.ToolStripMenuItem48.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem48.Name = "ToolStripMenuItem48";
            this.ToolStripMenuItem48.Size = new System.Drawing.Size(119, 22);
            this.ToolStripMenuItem48.Text = "Medium";
            // 
            // ToolStripMenuItem49
            // 
            this.ToolStripMenuItem49.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem49.Name = "ToolStripMenuItem49";
            this.ToolStripMenuItem49.Size = new System.Drawing.Size(119, 22);
            this.ToolStripMenuItem49.Text = "Smaller";
            // 
            // ToolStripMenuItem50
            // 
            this.ToolStripMenuItem50.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem50.Name = "ToolStripMenuItem50";
            this.ToolStripMenuItem50.Size = new System.Drawing.Size(119, 22);
            this.ToolStripMenuItem50.Text = "Smallest";
            // 
            // ToolStripMenuItem51
            // 
            this.ToolStripMenuItem51.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem51.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem52,
            this.ToolStripMenuItem53,
            this.ToolStripMenuItem54});
            this.ToolStripMenuItem51.Name = "ToolStripMenuItem51";
            this.ToolStripMenuItem51.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem51.Text = "Encoding";
            // 
            // ToolStripMenuItem52
            // 
            this.ToolStripMenuItem52.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem52.Name = "ToolStripMenuItem52";
            this.ToolStripMenuItem52.Size = new System.Drawing.Size(230, 22);
            this.ToolStripMenuItem52.Text = "Auto-Select";
            // 
            // ToolStripMenuItem53
            // 
            this.ToolStripMenuItem53.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem53.Name = "ToolStripMenuItem53";
            this.ToolStripMenuItem53.Size = new System.Drawing.Size(230, 22);
            this.ToolStripMenuItem53.Text = "Western European (Windows)";
            // 
            // ToolStripMenuItem54
            // 
            this.ToolStripMenuItem54.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem54.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem55,
            this.ToolStripMenuItem56,
            this.ToolStripMenuItem57,
            this.ToolStripMenuItem58,
            this.ToolStripMenuItem59,
            this.ToolStripMenuItem60,
            this.ToolStripMenuItem61,
            this.ToolStripMenuItem62,
            this.ToolStripMenuItem63,
            this.ToolStripMenuItem64,
            this.ToolStripMenuItem65,
            this.ToolStripMenuItem66,
            this.ToolStripMenuItem67,
            this.ToolStripMenuItem68,
            this.ToolStripMenuItem69,
            this.ToolStripMenuItem70});
            this.ToolStripMenuItem54.Name = "ToolStripMenuItem54";
            this.ToolStripMenuItem54.Size = new System.Drawing.Size(230, 22);
            this.ToolStripMenuItem54.Text = "More";
            // 
            // ToolStripMenuItem55
            // 
            this.ToolStripMenuItem55.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem55.Name = "ToolStripMenuItem55";
            this.ToolStripMenuItem55.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem55.Text = "Arabic";
            // 
            // ToolStripMenuItem56
            // 
            this.ToolStripMenuItem56.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem56.Name = "ToolStripMenuItem56";
            this.ToolStripMenuItem56.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem56.Text = "Baltic";
            // 
            // ToolStripMenuItem57
            // 
            this.ToolStripMenuItem57.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem57.Name = "ToolStripMenuItem57";
            this.ToolStripMenuItem57.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem57.Text = "Central European";
            // 
            // ToolStripMenuItem58
            // 
            this.ToolStripMenuItem58.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem58.Name = "ToolStripMenuItem58";
            this.ToolStripMenuItem58.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem58.Text = "Chinese Simplified";
            // 
            // ToolStripMenuItem59
            // 
            this.ToolStripMenuItem59.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem59.Name = "ToolStripMenuItem59";
            this.ToolStripMenuItem59.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem59.Text = "Chinese Traditional";
            // 
            // ToolStripMenuItem60
            // 
            this.ToolStripMenuItem60.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem60.Name = "ToolStripMenuItem60";
            this.ToolStripMenuItem60.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem60.Text = "Cyrillic";
            // 
            // ToolStripMenuItem61
            // 
            this.ToolStripMenuItem61.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem61.Name = "ToolStripMenuItem61";
            this.ToolStripMenuItem61.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem61.Text = "Greek";
            // 
            // ToolStripMenuItem62
            // 
            this.ToolStripMenuItem62.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem62.Name = "ToolStripMenuItem62";
            this.ToolStripMenuItem62.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem62.Text = "Hebrew";
            // 
            // ToolStripMenuItem63
            // 
            this.ToolStripMenuItem63.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem63.Name = "ToolStripMenuItem63";
            this.ToolStripMenuItem63.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem63.Text = "Japanese";
            // 
            // ToolStripMenuItem64
            // 
            this.ToolStripMenuItem64.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem64.Name = "ToolStripMenuItem64";
            this.ToolStripMenuItem64.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem64.Text = "Korean";
            // 
            // ToolStripMenuItem65
            // 
            this.ToolStripMenuItem65.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem65.Name = "ToolStripMenuItem65";
            this.ToolStripMenuItem65.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem65.Text = "Thai";
            // 
            // ToolStripMenuItem66
            // 
            this.ToolStripMenuItem66.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem66.Name = "ToolStripMenuItem66";
            this.ToolStripMenuItem66.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem66.Text = "Turkish";
            // 
            // ToolStripMenuItem67
            // 
            this.ToolStripMenuItem67.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem67.Name = "ToolStripMenuItem67";
            this.ToolStripMenuItem67.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem67.Text = "Unicode (UTF-8)";
            // 
            // ToolStripMenuItem68
            // 
            this.ToolStripMenuItem68.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem68.Name = "ToolStripMenuItem68";
            this.ToolStripMenuItem68.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem68.Text = "User Defined";
            // 
            // ToolStripMenuItem69
            // 
            this.ToolStripMenuItem69.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem69.Name = "ToolStripMenuItem69";
            this.ToolStripMenuItem69.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem69.Text = "Vietnamese";
            // 
            // ToolStripMenuItem70
            // 
            this.ToolStripMenuItem70.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem70.Name = "ToolStripMenuItem70";
            this.ToolStripMenuItem70.Size = new System.Drawing.Size(199, 22);
            this.ToolStripMenuItem70.Text = "Western European (ISO)";
            // 
            // ToolStripMenuItem71
            // 
            this.ToolStripMenuItem71.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem71.Name = "ToolStripMenuItem71";
            this.ToolStripMenuItem71.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem71.Text = "Source";
            // 
            // ToolStripMenuItem72
            // 
            this.ToolStripMenuItem72.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem72.Name = "ToolStripMenuItem72";
            this.ToolStripMenuItem72.Size = new System.Drawing.Size(166, 22);
            this.ToolStripMenuItem72.Text = "Full Screen     F11";
            // 
            // ToolStripMenuItem78
            // 
            this.ToolStripMenuItem78.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem79,
            this.ToolStripMenuItem85,
            this.ToolStripMenuItem86,
            this.ToolStripMenuItem87});
            this.ToolStripMenuItem78.Name = "ToolStripMenuItem78";
            this.ToolStripMenuItem78.Size = new System.Drawing.Size(34, 20);
            this.ToolStripMenuItem78.Text = "Go";
            // 
            // ToolStripMenuItem79
            // 
            this.ToolStripMenuItem79.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem79.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem80,
            this.ToolStripMenuItem81,
            this.ToolStripMenuItem82,
            this.ToolStripMenuItem83,
            this.ToolStripMenuItem84});
            this.ToolStripMenuItem79.Name = "ToolStripMenuItem79";
            this.ToolStripMenuItem79.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem79.Text = "Mail and News";
            // 
            // ToolStripMenuItem80
            // 
            this.ToolStripMenuItem80.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem80.Name = "ToolStripMenuItem80";
            this.ToolStripMenuItem80.Size = new System.Drawing.Size(156, 22);
            this.ToolStripMenuItem80.Text = "Read Mail";
            // 
            // ToolStripMenuItem81
            // 
            this.ToolStripMenuItem81.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem81.Name = "ToolStripMenuItem81";
            this.ToolStripMenuItem81.Size = new System.Drawing.Size(156, 22);
            this.ToolStripMenuItem81.Text = "New Message...";
            // 
            // ToolStripMenuItem82
            // 
            this.ToolStripMenuItem82.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem82.Name = "ToolStripMenuItem82";
            this.ToolStripMenuItem82.Size = new System.Drawing.Size(156, 22);
            this.ToolStripMenuItem82.Text = "Send a Link...";
            // 
            // ToolStripMenuItem83
            // 
            this.ToolStripMenuItem83.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem83.Name = "ToolStripMenuItem83";
            this.ToolStripMenuItem83.Size = new System.Drawing.Size(156, 22);
            this.ToolStripMenuItem83.Text = "Send Page...";
            // 
            // ToolStripMenuItem84
            // 
            this.ToolStripMenuItem84.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem84.Name = "ToolStripMenuItem84";
            this.ToolStripMenuItem84.Size = new System.Drawing.Size(156, 22);
            this.ToolStripMenuItem84.Text = "Read News";
            // 
            // ToolStripMenuItem85
            // 
            this.ToolStripMenuItem85.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem85.Name = "ToolStripMenuItem85";
            this.ToolStripMenuItem85.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem85.Text = "Windows Update";
            // 
            // ToolStripMenuItem86
            // 
            this.ToolStripMenuItem86.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem86.Name = "ToolStripMenuItem86";
            this.ToolStripMenuItem86.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem86.Text = "Show Related Links";
            // 
            // ToolStripMenuItem87
            // 
            this.ToolStripMenuItem87.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem87.Name = "ToolStripMenuItem87";
            this.ToolStripMenuItem87.Size = new System.Drawing.Size(175, 22);
            this.ToolStripMenuItem87.Text = "Internet Options...";
            // 
            // ToolStripMenuItem73
            // 
            this.ToolStripMenuItem73.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem74,
            this.ToolStripMenuItem75,
            this.ToolStripMenuItem76});
            this.ToolStripMenuItem73.Name = "ToolStripMenuItem73";
            this.ToolStripMenuItem73.Size = new System.Drawing.Size(66, 20);
            this.ToolStripMenuItem73.Text = "Favorites";
            // 
            // ToolStripMenuItem74
            // 
            this.ToolStripMenuItem74.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem74.Name = "ToolStripMenuItem74";
            this.ToolStripMenuItem74.Size = new System.Drawing.Size(180, 22);
            this.ToolStripMenuItem74.Text = "Add to Favorites...";
            // 
            // ToolStripMenuItem75
            // 
            this.ToolStripMenuItem75.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem75.Name = "ToolStripMenuItem75";
            this.ToolStripMenuItem75.Size = new System.Drawing.Size(180, 22);
            this.ToolStripMenuItem75.Text = "Organize Favorites...";
            // 
            // ToolStripMenuItem76
            // 
            this.ToolStripMenuItem76.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem76.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem77});
            this.ToolStripMenuItem76.Name = "ToolStripMenuItem76";
            this.ToolStripMenuItem76.Size = new System.Drawing.Size(180, 22);
            this.ToolStripMenuItem76.Text = "Links";
            // 
            // ToolStripMenuItem77
            // 
            this.ToolStripMenuItem77.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem77.Name = "ToolStripMenuItem77";
            this.ToolStripMenuItem77.Size = new System.Drawing.Size(109, 22);
            this.ToolStripMenuItem77.Text = "(none)";
            // 
            // ToolStripMenuItem88
            // 
            this.ToolStripMenuItem88.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem89,
            this.ToolStripMenuItem90,
            this.ToolStripMenuItem91,
            this.ToolStripMenuItem92,
            this.ToolStripMenuItem93,
            this.ToolStripMenuItem94,
            this.ToolStripMenuItem95});
            this.ToolStripMenuItem88.Name = "ToolStripMenuItem88";
            this.ToolStripMenuItem88.Size = new System.Drawing.Size(44, 20);
            this.ToolStripMenuItem88.Text = "Help";
            // 
            // ToolStripMenuItem89
            // 
            this.ToolStripMenuItem89.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem89.Name = "ToolStripMenuItem89";
            this.ToolStripMenuItem89.Size = new System.Drawing.Size(196, 22);
            this.ToolStripMenuItem89.Text = "Contects and Index";
            // 
            // ToolStripMenuItem90
            // 
            this.ToolStripMenuItem90.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem90.Name = "ToolStripMenuItem90";
            this.ToolStripMenuItem90.Size = new System.Drawing.Size(196, 22);
            this.ToolStripMenuItem90.Text = "Tip of the Day";
            // 
            // ToolStripMenuItem91
            // 
            this.ToolStripMenuItem91.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem91.Name = "ToolStripMenuItem91";
            this.ToolStripMenuItem91.Size = new System.Drawing.Size(196, 22);
            this.ToolStripMenuItem91.Text = "For Netscape Users";
            // 
            // ToolStripMenuItem92
            // 
            this.ToolStripMenuItem92.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem92.Name = "ToolStripMenuItem92";
            this.ToolStripMenuItem92.Size = new System.Drawing.Size(196, 22);
            this.ToolStripMenuItem92.Text = "Tour";
            // 
            // ToolStripMenuItem93
            // 
            this.ToolStripMenuItem93.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem93.Name = "ToolStripMenuItem93";
            this.ToolStripMenuItem93.Size = new System.Drawing.Size(196, 22);
            this.ToolStripMenuItem93.Text = "Online Support";
            // 
            // ToolStripMenuItem94
            // 
            this.ToolStripMenuItem94.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem94.Name = "ToolStripMenuItem94";
            this.ToolStripMenuItem94.Size = new System.Drawing.Size(196, 22);
            this.ToolStripMenuItem94.Text = "About Internet Explorer";
            // 
            // ToolStripMenuItem95
            // 
            this.ToolStripMenuItem95.BackColor = System.Drawing.Color.Silver;
            this.ToolStripMenuItem95.Name = "ToolStripMenuItem95";
            this.ToolStripMenuItem95.Size = new System.Drawing.Size(196, 22);
            this.ToolStripMenuItem95.Text = "Send Feedback";
            // 
            // WinClassicIE4
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.program);
            this.Name = "WinClassicIE4";
            this.Size = new System.Drawing.Size(959, 594);
            this.Load += new System.EventHandler(this.WinClassicIE4_Load);
            this.program.ResumeLayout(false);
            this.program.PerformLayout();
            this.browsingarea.ResumeLayout(false);
            this.padamsmain.ResumeLayout(false);
            this.padamsmain.PerformLayout();
            this.Panel12.ResumeLayout(false);
            this.Panel12.PerformLayout();
            this.Panel10.ResumeLayout(false);
            this.Panel10.PerformLayout();
            this.Panel9.ResumeLayout(false);
            this.Panel9.PerformLayout();
            this.Panel8.ResumeLayout(false);
            this.Panel8.PerformLayout();
            this.padamsbackgrounds.ResumeLayout(false);
            this.padamsbackgrounds.PerformLayout();
            this.Panel13.ResumeLayout(false);
            this.Panel13.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Previewimage)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.mclarinflimage)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.win95background)).EndInit();
            this.hotmailmain.ResumeLayout(false);
            this.hotmailmain.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox5)).EndInit();
            this.Panel11.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox3)).EndInit();
            this.hotmailpadams.ResumeLayout(false);
            this.email1.ResumeLayout(false);
            this.email1.PerformLayout();
            this.email3.ResumeLayout(false);
            this.email3.PerformLayout();
            this.email2.ResumeLayout(false);
            this.email2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox12)).EndInit();
            this.googlealpha.ResumeLayout(false);
            this.googlealpha.PerformLayout();
            this.Panel6.ResumeLayout(false);
            this.Panel6.PerformLayout();
            this.Panel7.ResumeLayout(false);
            this.Panel7.PerformLayout();
            this.Panel5.ResumeLayout(false);
            this.Panel5.PerformLayout();
            this.Panel4.ResumeLayout(false);
            this.Panel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).EndInit();
            this.padamshidden.ResumeLayout(false);
            this.padamshidden.PerformLayout();
            this.secretwebsite.ResumeLayout(false);
            this.secretwebsite.PerformLayout();
            this.skindows95advertisment.ResumeLayout(false);
            this.skindows95advertisment.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox11)).EndInit();
            this.googlemain.ResumeLayout(false);
            this.googlemain.PerformLayout();
            this.googleprototype.ResumeLayout(false);
            this.googleprototype.PerformLayout();
            this.Panel3.ResumeLayout(false);
            this.Panel3.PerformLayout();
            this.Panel2.ResumeLayout(false);
            this.Panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pboxgoogleprototypelogo)).EndInit();
            this.Panel14.ResumeLayout(false);
            this.Panel14.PerformLayout();
            this.Panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit();
            this.MenuStrip3.ResumeLayout(false);
            this.MenuStrip3.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        internal System.Windows.Forms.Panel program;
        internal System.Windows.Forms.Panel browsingarea;
        internal System.Windows.Forms.Panel padamsbackgrounds;
        internal System.Windows.Forms.Panel Panel13;
        internal System.Windows.Forms.PictureBox Previewimage;
        internal System.Windows.Forms.Button Button21;
        internal System.Windows.Forms.Button Button22;
        internal System.Windows.Forms.Label Label35;
        internal System.Windows.Forms.PictureBox mclarinflimage;
        internal System.Windows.Forms.Button Button20;
        internal System.Windows.Forms.Button Button19;
        internal System.Windows.Forms.Label Label34;
        internal System.Windows.Forms.PictureBox win95background;
        internal System.Windows.Forms.Label Label33;
        internal System.Windows.Forms.Label Label32;
        internal System.Windows.Forms.Panel hotmailmain;
        internal System.Windows.Forms.PictureBox PictureBox9;
        internal System.Windows.Forms.PictureBox PictureBox10;
        internal System.Windows.Forms.Label Label31;
        internal System.Windows.Forms.Label Label30;
        internal System.Windows.Forms.Label Label29;
        internal System.Windows.Forms.PictureBox PictureBox8;
        internal System.Windows.Forms.PictureBox PictureBox7;
        internal System.Windows.Forms.PictureBox PictureBox6;
        internal System.Windows.Forms.Label Label28;
        internal System.Windows.Forms.Label Label27;
        internal System.Windows.Forms.PictureBox PictureBox5;
        internal System.Windows.Forms.RadioButton RadioButton3;
        internal System.Windows.Forms.RadioButton RadioButton2;
        internal System.Windows.Forms.RadioButton RadioButton1;
        internal System.Windows.Forms.Button Button18;
        internal System.Windows.Forms.TextBox txtpassword;
        internal System.Windows.Forms.TextBox txtloginname;
        internal System.Windows.Forms.Label Label26;
        internal System.Windows.Forms.Label Label25;
        internal System.Windows.Forms.Label Label24;
        internal System.Windows.Forms.Label Label23;
        internal System.Windows.Forms.Panel Panel11;
        internal System.Windows.Forms.PictureBox PictureBox4;
        internal System.Windows.Forms.PictureBox PictureBox3;
        internal System.Windows.Forms.Panel hotmailpadams;
        internal System.Windows.Forms.Panel email1;
        internal System.Windows.Forms.LinkLabel LinkLabel18;
        internal System.Windows.Forms.Label Label56;
        internal System.Windows.Forms.Label Label47;
        internal System.Windows.Forms.TextBox TextBox12;
        internal System.Windows.Forms.TextBox TextBox11;
        internal System.Windows.Forms.TextBox TextBox7;
        internal System.Windows.Forms.TextBox TextBox6;
        internal System.Windows.Forms.Label Label46;
        internal System.Windows.Forms.Label Label45;
        internal System.Windows.Forms.Label Label44;
        internal System.Windows.Forms.Panel email3;
        internal System.Windows.Forms.Label Label52;
        internal System.Windows.Forms.TextBox TextBox17;
        internal System.Windows.Forms.TextBox TextBox18;
        internal System.Windows.Forms.TextBox TextBox19;
        internal System.Windows.Forms.TextBox TextBox20;
        internal System.Windows.Forms.Label Label53;
        internal System.Windows.Forms.Label Label54;
        internal System.Windows.Forms.Label Label55;
        internal System.Windows.Forms.Panel email2;
        internal System.Windows.Forms.Label Label48;
        internal System.Windows.Forms.TextBox TextBox13;
        internal System.Windows.Forms.TextBox TextBox14;
        internal System.Windows.Forms.TextBox TextBox15;
        internal System.Windows.Forms.TextBox TextBox16;
        internal System.Windows.Forms.Label Label49;
        internal System.Windows.Forms.Label Label50;
        internal System.Windows.Forms.Label Label51;
        internal System.Windows.Forms.ListBox ListBox1;
        internal System.Windows.Forms.PictureBox PictureBox14;
        internal System.Windows.Forms.PictureBox PictureBox13;
        internal System.Windows.Forms.PictureBox PictureBox12;
        internal System.Windows.Forms.Panel googlealpha;
        internal System.Windows.Forms.Label Label15;
        internal System.Windows.Forms.Panel Panel6;
        internal System.Windows.Forms.LinkLabel LinkLabel13;
        internal System.Windows.Forms.LinkLabel LinkLabel10;
        internal System.Windows.Forms.LinkLabel LinkLabel11;
        internal System.Windows.Forms.LinkLabel LinkLabel12;
        internal System.Windows.Forms.LinkLabel LinkLabel9;
        internal System.Windows.Forms.LinkLabel LinkLabel8;
        internal System.Windows.Forms.LinkLabel LinkLabel7;
        internal System.Windows.Forms.Panel Panel7;
        internal System.Windows.Forms.LinkLabel LinkLabel14;
        internal System.Windows.Forms.Button Button14;
        internal System.Windows.Forms.TextBox TextBox5;
        internal System.Windows.Forms.Label Label14;
        internal System.Windows.Forms.Label Label13;
        internal System.Windows.Forms.Panel Panel5;
        internal System.Windows.Forms.LinkLabel LinkLabel6;
        internal System.Windows.Forms.LinkLabel LinkLabel5;
        internal System.Windows.Forms.Label Label12;
        internal System.Windows.Forms.Panel Panel4;
        internal System.Windows.Forms.Button Button13;
        internal System.Windows.Forms.Button Button12;
        internal System.Windows.Forms.TextBox TextBox4;
        internal System.Windows.Forms.Label Label11;
        internal System.Windows.Forms.PictureBox PictureBox2;
        internal System.Windows.Forms.Panel padamsmain;
        internal System.Windows.Forms.Panel Panel12;
        internal System.Windows.Forms.LinkLabel LinkLabel17;
        internal System.Windows.Forms.Label Label38;
        internal System.Windows.Forms.Label Label20;
        internal System.Windows.Forms.Panel Panel10;
        internal System.Windows.Forms.Button Button16;
        internal System.Windows.Forms.Label Label22;
        internal System.Windows.Forms.Button Button15;
        internal System.Windows.Forms.Label Label21;
        internal System.Windows.Forms.Label Label18;
        internal System.Windows.Forms.Panel Panel9;
        internal System.Windows.Forms.Label Label37;
        internal System.Windows.Forms.Button Button24;
        internal System.Windows.Forms.Button Button23;
        internal System.Windows.Forms.Label Label36;
        internal System.Windows.Forms.Label Label19;
        internal System.Windows.Forms.Panel Panel8;
        internal System.Windows.Forms.Button Button26;
        internal System.Windows.Forms.Label Label57;
        internal System.Windows.Forms.Button WCDownloadButton;
        internal System.Windows.Forms.Label Label43;
        internal System.Windows.Forms.Button Button17;
        internal System.Windows.Forms.Label Label5;
        internal System.Windows.Forms.Label Label17;
        internal System.Windows.Forms.Label Label16;
        internal System.Windows.Forms.Label Label4;
        internal System.Windows.Forms.Panel padamshidden;
        internal System.Windows.Forms.TextBox TextBox10;
        internal System.Windows.Forms.Panel secretwebsite;
        internal System.Windows.Forms.TextBox TextBox9;
        internal System.Windows.Forms.Panel skindows95advertisment;
        internal System.Windows.Forms.Label Label42;
        internal System.Windows.Forms.Label Label41;
        internal System.Windows.Forms.TextBox TextBox8;
        internal System.Windows.Forms.PictureBox PictureBox11;
        internal System.Windows.Forms.Label Label40;
        internal System.Windows.Forms.Label Label39;
        internal System.Windows.Forms.Panel googlemain;
        internal System.Windows.Forms.LinkLabel googlebetalink;
        internal System.Windows.Forms.LinkLabel googleprototypelink;
        internal System.Windows.Forms.Label Label6;
        internal System.Windows.Forms.Panel googleprototype;
        internal System.Windows.Forms.Label Label10;
        internal System.Windows.Forms.Panel Panel3;
        internal System.Windows.Forms.LinkLabel LinkLabel4;
        internal System.Windows.Forms.Button Button11;
        internal System.Windows.Forms.TextBox TextBox3;
        internal System.Windows.Forms.Label Label9;
        internal System.Windows.Forms.LinkLabel LinkLabel3;
        internal System.Windows.Forms.LinkLabel LinkLabel2;
        internal System.Windows.Forms.LinkLabel LinkLabel1;
        internal System.Windows.Forms.Panel Panel2;
        internal System.Windows.Forms.Label Label8;
        internal System.Windows.Forms.Button Button10;
        internal System.Windows.Forms.Button GoogleSearchButton;
        internal System.Windows.Forms.ComboBox ComboBox1;
        internal System.Windows.Forms.TextBox TextBox2;
        internal System.Windows.Forms.Label Label7;
        internal System.Windows.Forms.PictureBox pboxgoogleprototypelogo;
        internal System.Windows.Forms.Panel Panel14;
        internal System.Windows.Forms.Button GoButton;
        internal System.Windows.Forms.ComboBox addressbar;
        internal System.Windows.Forms.Label Label1;
        internal System.Windows.Forms.Panel Panel1;
        internal System.Windows.Forms.Button Button30;
        internal System.Windows.Forms.Button Button29;
        internal System.Windows.Forms.Button Button28;
        internal System.Windows.Forms.Button Button27;
        internal System.Windows.Forms.Button Button7;
        internal System.Windows.Forms.Button Button6;
        internal System.Windows.Forms.Button HomeButton;
        internal System.Windows.Forms.Button Button4;
        internal System.Windows.Forms.Button Button3;
        internal System.Windows.Forms.Button ForwardButton;
        internal System.Windows.Forms.Button BackButton;
        internal System.Windows.Forms.PictureBox PictureBox1;
        internal System.Windows.Forms.MenuStrip MenuStrip3;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem1;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem2;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem3;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem4;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem5;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem6;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem7;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem8;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem9;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem10;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem11;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem12;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem13;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem14;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem15;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem16;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem17;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem18;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem19;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem20;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem21;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem22;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem23;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem24;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem25;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem26;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem27;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem28;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem29;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem30;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem31;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem32;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem33;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem34;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem35;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem36;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem37;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem38;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem39;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem40;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem41;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem42;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem43;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem44;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem45;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem46;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem47;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem48;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem49;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem50;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem51;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem52;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem53;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem54;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem55;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem56;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem57;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem58;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem59;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem60;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem61;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem62;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem63;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem64;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem65;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem66;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem67;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem68;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem69;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem70;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem71;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem72;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem78;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem79;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem80;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem81;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem82;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem83;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem84;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem85;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem86;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem87;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem73;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem74;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem75;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem76;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem77;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem88;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem89;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem90;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem91;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem92;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem93;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem94;
        internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem95;
        internal System.ComponentModel.ComponentResourceManager resources;
    }
}