home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Seeker / rc4.js < prev    next >
Text File  |  2000-05-25  |  28KB  |  506 lines

  1. <title>Fortune City</title>
  2. <script language="JavaScript">
  3. <!-- hide
  4.   // ok, we have a JavaScript browser
  5.   var browserOK = false;
  6.   var pics;
  7. // -->
  8. </script>
  9.  
  10. <script language="JavaScript1.1">
  11. <!-- hide
  12.   browserOK = true;
  13.   pics = new Array();
  14. // -->
  15. </script>
  16.  
  17. <script language="JavaScript">
  18. <!-- hide
  19. var objCount = 0;
  20.  
  21. function preload(name, first, second) {  
  22.   if (browserOK) {     
  23.     pics[objCount] = new Array(3);
  24.     pics[objCount][0] = new Image();
  25.     pics[objCount][0].src = first;
  26.     pics[objCount][1] = new Image();
  27.     pics[objCount][1].src = second;
  28.     pics[objCount][2] = name;
  29.     objCount++;
  30.   }
  31. }
  32.  
  33. function on(name){
  34.   if (browserOK) {
  35.      for (i = 0; i < objCount; i++) {
  36.       if (document.images[pics[i][2]] != null)
  37.         if (name != pics[i][2]) { 
  38.           // set back all other images
  39.           document.images[pics[i][2]].src = pics[i][0].src;
  40.         } else {
  41.            // show the second image
  42.            document.images[pics[i][2]].src = pics[i][1].src;
  43.         }
  44.     }
  45.   }
  46. }
  47.  
  48. function off(){
  49.   if (browserOK) {
  50.      for (i = 0; i < objCount; i++) {
  51.       // set back all images
  52.       if (document.images[pics[i][2]] != null) 
  53.         document.images[pics[i][2]].src = pics[i][0].src;
  54.     }
  55.   }
  56. }
  57.  
  58. // preload images - you have to specify which images should be preloaded
  59. // and which Image-object on the web-page they belong to (this is the first
  60. // argument). 
  61.  
  62.  
  63. preload("button-arts", "http://www.fortunecity.com/images/arts.gif", "http://www.fortunecity.com/images/arts_F2.gif");
  64. preload("button-business", "http://www.fortunecity.com/images/business.gif", "http://www.fortunecity.com/images/business_F2.gif");
  65. preload("button-computers", "http://www.fortunecity.com/images/computers.gif", "http://www.fortunecity.com/images/computers_F2.gif");
  66. preload("button-entertainment", "http://www.fortunecity.com/images/entertainment.gif", "http://www.fortunecity.com/images/entertainment_F2.gif");
  67. preload("button-funstuff", "http://www.fortunecity.com/images/funstuff.gif", "http://www.fortunecity.com/images/funstuff_F2.gif");
  68. preload("button-home", "http://www.fortunecity.com/images/home.gif", "http://www.fortunecity.com/images/home_F2.gif");
  69. preload("button-internat", "http://www.fortunecity.com/images/internat.gif", "http://www.fortunecity.com/images/internat_F2.gif");
  70. preload("button-people", "http://www.fortunecity.com/images/people.gif", "http://www.fortunecity.com/images/people_F2.gif");
  71. preload("button-recreation", "http://www.fortunecity.com/images/recreation.gif", "http://www.fortunecity.com/images/recreation_F2.gif");
  72. preload("button-scifi", "http://www.fortunecity.com/images/scifi.gif", "http://www.fortunecity.com/images/scifi_F2.gif");
  73. preload("button-travel", "http://www.fortunecity.com/images/travel.gif", "http://www.fortunecity.com/images/travel_F2.gif");
  74. preload("button-tour", "http://www.fortunecity.com/images/navbar/tour.gif", "http://www.fortunecity.com/images/navbar/tour_F2.gif");
  75. preload("button-map", "http://www.fortunecity.com/images/navbar/map.gif", "http://www.fortunecity.com/images/navbar/map_F2.gif");
  76. preload("button-whatsnew", "http://www.fortunecity.com/images/navbar/whatsnew.gif", "http://www.fortunecity.com/images/navbar/whatsnew_F2.gif");
  77. preload("button-help", "http://www.fortunecity.com/images/navbar/help.gif", "http://www.fortunecity.com/images/navbar/help_F2.gif");
  78. preload("button-about", "http://www.fortunecity.com/images/navbar/about.gif", "http://www.fortunecity.com/images/navbar/about_F2.gif");
  79. preload("button-advert", "http://www.fortunecity.com/images/navbar/advert.gif", "http://www.fortunecity.com/images/navbar/advert_F2.gif");
  80. preload("button-investors", "http://www.fortunecity.com/images/navbar/investors.gif", "http://www.fortunecity.com/images/navbar/investors_F2.gif");
  81. preload("button-email", "http://www.fortunecity.com/images/navbar/email.gif", "http://www.fortunecity.com/images/navbar/email_F2.gif");
  82.  
  83. preload("interact-text", "http://www.fortunecity.com/images/home_interact-tag.gif", "http://www.fortunecity.com/images/home_interact-tag2.gif");
  84. preload("build-text", "http://www.fortunecity.com/images/home_build-tag.gif", "http://www.fortunecity.com/images/home_build-tag2.gif");
  85. preload("explore-text", "http://www.fortunecity.com/images/home_explore-tag.gif", "http://www.fortunecity.com/images/home_explore-tag2.gif");
  86. preload("shop-text", "http://www.fortunecity.com/images/home_shop-tag.gif", "http://www.fortunecity.com/images/home_shop-tag2.gif");
  87. // -->
  88. </script>
  89.  
  90. <STYLE TYPE="text/css" TITLE="No underline">
  91. <!--
  92. A:link, A:visited, A:active { color: white; } 
  93. // -->
  94. </STYLE>
  95.  
  96. </head>
  97.  
  98. <body bgcolor="#000000" link="#ffffff" vlink="#ffffff" background="../../images/tile_home.gif">
  99. <div align="center">
  100.  
  101. <table border="0">
  102.     <tr>
  103.         <td width="15" height="113"> </td>
  104.         <td align="center"><a href="../../join/index.html"><img src="http://www.fortunecity.com/images/home_join.gif" width=148 height=113 alt="" border="0" vspace="0" hspace="0"></a></td>
  105.         <td width="15"> </td>
  106.         <td align="center" valign="middle"><img src="http://www.fortunecity.com/images/home_logo.gif" width=390 height=124 hspace=0 vspace=0 border=0 alt="FortuneCity.Com"></td>
  107.         <td width="15"> </td>
  108.         <td align="center">
  109. <SCRIPT LANGUAGE="JavaScript">
  110. <!--
  111. var ord = (Math.random() + "") * 1000000000000000000
  112. document.writeln( "<IFRAME SRC=\"" + "http://ad.doubleclick.net/adi/fc.us1/core/lostmap/map;s1=c;s2=expl;s3=home;pos=r;tag=i;sz=147x119;mtile=111;" + ord + "?\"" + "width=147 height=119 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>")
  113. document.writeln( "<A HREF=\"" + "http://ad.doubleclick.net/jump/fc.us1/core/lostmap/map;abr=!ie;s1=c;s2=expl;s3=home;pos=r;tag=i;sz=147x119;mtile=111;" + ord + "?\">")
  114. document.writeln( "<IMG SRC=\"" + "http://ad.doubleclick.net/ad/fc.us1/core/lostmap/map;abr=!ie;s1=c;s2=expl;s3=home;pos=r;tag=i;sz=147x119;mtile=111;" + ord + "?\"" + "height=119 width=147 border=0></A>")
  115. document.writeln( "</IFRAME>" )
  116. //-->
  117. </SCRIPT>
  118. <NOSCRIPT>
  119. <IFRAME SRC="http://ad.doubleclick.net/adi/fc.us1/core/lostmap/map;s1=c;s2=expl;s3=home;pos=r;tag=i;sz=147x119;mtile=111; ord=1022?" width=147 height=119 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>
  120. <A HREF="http://ad.doubleclick.net/jump/fc.us1/core/lostmap/map;abr=!ie;s1=c;s2=expl;s3=home;pos=r;tag=i;sz=147x119;mtile=111; ord=1022?"><IMG SRC="http://ad.doubleclick.net/ad/fc.us1//core/lostmap/map;abr=!ie;s1=c;s2=expl;s3=home;pos=r;tag=i;sz=147x119;mtile=111; ord=1022?" height=119 width=147 border=0></A>
  121. </IFRAME>
  122. </NOSCRIPT>
  123.  
  124. </td>
  125.  
  126.         <td width="15"> </td>    
  127.     </tr>
  128. </table>
  129.  
  130. </div>
  131. <table border="0" cellpadding="0" cellspacing="0" width="712" align="center">
  132.   <tr><!-- spacing row, 1 height. --> 
  133.     <td width="184"><img name="FwShim_Col_2" src="../../images/shim.gif" width="150" height="1" border="0"></td>
  134.     <td width="84"><img name="FwShim_Col_7" src="../../images/shim.gif" width="70" height="1" border="0"></td>
  135.     <td width="11"><img name="FwShim_Col_8" src="../../images/shim.gif" width="11" height="1" border="0"></td>
  136.     <td width="58"><img name="FwShim_Col_10" src="../../images/shim.gif" width="53" height="1" border="0"></td>
  137.     <td width="11"><img name="FwShim_Col_11" src="../../images/shim.gif" width="11" height="1" border="0"></td>
  138.     <td width="23"><img name="FwShim_Col_12" src="../../images/shim.gif" width="23" height="1" border="0"></td>
  139.     <td width="35"><img name="FwShim_Col_13" src="../../images/shim.gif" width="33" height="1" border="0"></td>
  140.     <td width="7"><img name="FwShim_Col_14" src="../../images/shim.gif" width="7" height="1" border="0"></td>
  141.     <td width="8"><img name="FwShim_Col_15" src="../../images/shim.gif" width="7" height="1" border="0"></td>
  142.     <td width="11"><img name="FwShim_Col_16" src="../../images/shim.gif" width="11" height="1" border="0"></td>
  143.     <td width="76"><img name="FwShim_Col_17" src="../../images/shim.gif" width="71" height="1" border="0"></td>
  144.     <td width="12"><img name="FwShim_Col_18" src="../../images/shim.gif" width="11" height="1" border="0"></td>
  145.     <td width="23"><img name="FwShim_Col_19" src="../../images/shim.gif" width="20" height="1" border="0"></td>
  146.     <td width="21"><img name="FwShim_Col_20" src="../../images/shim.gif" width="18" height="1" border="0"></td>
  147.     <td width="42"><img name="FwShim_Col_22" src="../../images/shim.gif" width="35" height="1" border="0"></td>
  148.     <td width="34"><img name="FwShim_Col_23" src="../../images/shim.gif" width="26" height="1" border="0"></td>
  149.   </tr>
  150.   <tr><!-- row 1 --> 
  151.     <td colspan="16" height="3"><img name="FwShim_Row_0" src="../../images/shim.gif" width="1" height="4" border="0"></td>
  152.   </tr>
  153.   
  154.   <tr><!-- row 3 --> 
  155.     <td rowspan="2" width="184"><img  src="../../images/big_404.gif" name="big_404" width="182" height="64" border="0"></td>
  156.     <td width="84" align="right"><a href="../../explore/index.html"><img  src="../../images/explore.gif" name="explore" width="70" height="42" border="0"></a></td>
  157.     <td width="11"><img  src="../../images/shim01.gif" name="shim01" width="11" height="42" border="0"></td>
  158.     <td><a href="../../build/index.html"><img  src="../../images/build.gif" name="build" width="70" height="42" border="0"></a></td>
  159.     <td width="11"><img  src="../../images/shim02.gif" name="shim02" width="11" height="42" border="0"></td>
  160.     <td colspan="4"><a href="../../interact/index.html"><img  src="../../images/interact.gif" name="interact" width="70" height="42" border="0"></a></td>
  161.     <td width="11"><img  src="../../images/shim03.gif" name="shim03" width="11" height="42" border="0"></td>
  162.     <td width="76"><a href="../../shop/index.html"><img  src="../../images/shop.gif" name="shop" width="71" height="42" border="0"></a></td>
  163.     <td width="12" colspan="5" rowspan="3">
  164.     
  165.       <FORM METHOD=GET action=http://www2.fortunecity.com/apps/Search/Search NAME=search>
  166.         <table border="0" cellpadding="0" cellspacing="0">
  167.       <tr align="right">
  168.         <td colspan="4"><img  src="../../images/search.gif" name="search" width="144" height="42" border="0"></td>
  169.       </tr>
  170.           <tr> 
  171.             <td colspan="3"> 
  172.               <div align="right"> 
  173.                 <input type="text" name="textfield" size="12">
  174.               </div>
  175.         </td>
  176.         <td align="right" width="43"> 
  177.               <div align="right"> 
  178.                 <input type="Image" name="imageField" align="RIGHT" src="../../images/go.gif" border="0" width="43" height="39" hspace="1">
  179.               </div>
  180.         </td>
  181.       </tr>
  182.           <tr> 
  183.             <td> 
  184.               <INPUT TYPE="radio" NAME=searchtype VALUE="fc:FC_index" hspace="0" vspace="0" border="0">
  185.             </td>
  186.         <td><font color="#FFFFFF" size="2">fortunecity</font></td>
  187.         <td> 
  188.               <INPUT TYPE="radio" NAME=searchtype checked VALUE="goto" vspace="0">
  189.             </td>
  190.         <td><font color="#FFFFFF" size="2">the web</font></td>
  191.       </tr>
  192.         </table>
  193.       </form>
  194.     </td>
  195.   </tr>
  196.   <tr><!-- row 4 --> 
  197.     <td colspan="10" align="right"> <img  src="../../images/message.gif" name="message" width="314" height="35" border="0"></td>
  198.   </tr>
  199.   
  200.   
  201.   <tr><!-- row 7 --> 
  202.     <td rowspan="9" align="left" width="184" valign="top">
  203.       <table border="0" cellpadding="0" cellspacing="0" width="150">
  204.                     
  205.                         
  206.     <tr><!-- spacing row, 1 height. -->
  207.                            
  208.       <td rowspan="23"> </td>
  209.       <td><img name="FwShim_Col_0" src="../../images/shim.gif" width="26" height="1" border="0"></td>
  210.       <td><img name="FwShim_Col_1" src="../../images/shim.gif" width="122" height="1" border="0"></td>
  211.       <td><img name="FwShim_Col_2" src="../../images/shim.gif" width="1" height="1" border="0"></td>
  212.       <td><img name="FwShim_Col_3" src="../../images/shim.gif" width="1" height="1" border="0"></td>
  213.     </tr>
  214.                     
  215.                         
  216.     <tr><!-- row 1 -->
  217.                            
  218.       <td colspan="3"><img src="../../images/nav_r01_c1.gif" name="nav_r01_c1" width="149" height="4" border="0"></td>
  219.       <td><img name="FwShim_Row_0" src="../../images/shim.gif" width="1" height="4" border="0"></td>
  220.     </tr>
  221.                     
  222.                         
  223.     <tr><!-- row 2 -->
  224.                            
  225.       <td colspan="2"><a href="../../explore/category/artsandhumanities.html" onMouseOver="on('button-arts')" onMouseOut="off()"><img src="../../images/arts.gif" name="button-arts" width="148" height="19" border="0"></a></td>
  226.       <td rowspan="21" valign="top"><img src="../../images/nav_r02_c3.gif" name="nav_r02_c3" width="1" height="336" border="0"></td>
  227.       <td><img name="FwShim_Row_1" src="../../images/shim.gif" width="1" height="19" border="0"></td>
  228.     </tr>
  229.                     
  230.                         
  231.     <tr><!-- row 3 -->
  232.                            
  233.       <td colspan="2"><a href="../../explore/category/businessandcareers.html" onMouseOver="on('button-business')" onMouseOut="off()"><img src="../../images/business.gif" name="button-business" width="148" height="19" border="0"></a></td>
  234.       <td><img name="FwShim_Row_2" src="../../images/shim.gif" width="1" height="19" border="0"></td>
  235.     </tr>
  236.                     
  237.                         
  238.     <tr><!-- row 4 -->
  239.                             
  240.       <td colspan="2"><a href="../../explore/category/computersandinternet.html" onMouseOver="on('button-computers')" onMouseOut="off()"><img src="../../images/computers.gif" name="button-computers" width="148" height="19" border="0"></a></td>
  241.       <td><img name="FwShim_Row_3" src="../../images/shim.gif" width="1" height="19" border="0"></td>
  242.     </tr>
  243.                     
  244.                         
  245.     <tr><!-- row 5 -->
  246.                             
  247.       <td colspan="2"><a href="../../explore/category/entertainment.html" onMouseOver="on('button-entertainment')" onMouseOut="off()"><img src="../../images/entertainment.gif" name="button-entertainment" width="148" height="19" border="0"></a></td>
  248.       <td><img name="FwShim_Row_4" src="../../images/shim.gif" width="1" height="19" border="0"></td>
  249.     </tr>
  250.                     
  251.                         
  252.     <tr><!-- row 6 -->
  253.                             
  254.       <td colspan="2"><a href="../../news/funstuff/index.html" onMouseOver="on('button-funstuff')" onMouseOut="off()"><img src="../../images/funstuff.gif" name="button-funstuff" width="148" height="19" border="0"></a></td>
  255.       <td><img name="FwShim_Row_5" src="../../images/shim.gif" width="1" height="19" border="0"></td>
  256.     </tr>
  257.                     
  258.                         
  259.     <tr><!-- row 7 -->
  260.                             
  261.       <td colspan="2"><a href="../../explore/category/homeandfamily.html" onMouseOver="on('button-home')" onMouseOut="off()"><img src="../../images/home.gif" name="button-home" width="148" height="20" border="0"></a></td>
  262.       <td><img name="FwShim_Row_6" src="../../images/shim.gif" width="1" height="20" border="0"></td>
  263.     </tr>
  264.                     
  265.                         
  266.     <tr><!-- row 8 -->
  267.                             
  268.       <td colspan="2"><a href="../../explore/category/international.html" onMouseOver="on('button-internat')" onMouseOut="off()"><img src="../../images/internat.gif" name="button-internat" width="148" height="18" border="0"></a></td>
  269.       <td><img name="FwShim_Row_7" src="../../images/shim.gif" width="1" height="18" border="0"></td>
  270.     </tr>
  271.                     
  272.                         
  273.     <tr><!-- row 9 -->
  274.                             
  275.       <td colspan="2"><a href="../../explore/category/peopleandchat.html" onMouseOver="on('button-people')" onMouseOut="off()"><img src="../../images/people.gif" name="button-people" width="148" height="20" border="0"></a></td>
  276.       <td><img name="FwShim_Row_8" src="../../images/shim.gif" width="1" height="20" border="0"></td>
  277.     </tr>
  278.                     
  279.                         
  280.     <tr><!-- row 10 -->
  281.                             
  282.       <td colspan="2"><a href="../../explore/category/recreationandsports.html" onMouseOver="on('button-recreation')" onMouseOut="off()"><img src="../../images/recreation.gif" name="button-recreation" width="148" height="19" border="0"></a></td>
  283.       <td><img name="FwShim_Row_9" src="../../images/shim.gif" width="1" height="19" border="0"></td>
  284.     </tr>
  285.                     
  286.                         
  287.     <tr><!-- row 11 -->
  288.                             
  289.       <td colspan="2"><a href="../../explore/category/scifiandparanormal.html" onMouseOver="on('button-scifi')" onMouseOut="off()"><img src="../../images/scifi.gif" name="button-scifi" width="148" height="20" border="0"></a></td>
  290.       <td><img name="FwShim_Row_10" src="../../images/shim.gif" width="1" height="20" border="0"></td>
  291.     </tr>
  292.                     
  293.                         
  294.     <tr><!-- row 12 -->
  295.                             
  296.       <td colspan="2"><a href="../../explore/category/travelandtransport.html" onMouseOver="on('button-travel')" onMouseOut="off()"><img src="../../images/travel.gif" name="button-travel" width="148" height="20" border="0"></a></td>
  297.       <td><img name="FwShim_Row_11" src="../../images/shim.gif" width="1" height="20" border="0"></td>
  298.     </tr>
  299.                     
  300.                         
  301.     <tr><!-- row 13 -->
  302.                                
  303.       <td rowspan="10"> </td>
  304.       <td><a href="../../tour/index.html" onMouseOver="on('button-tour')" onMouseOut="off()"><img src="../../images/navbar/tour.gif" name="button-tour" border="0" width="122" height="21"></a></td>
  305.       <td><img name="FwShim_Row_12" src="../../images/shim.gif" width="1" height="9" border="0"></td>
  306.     </tr>
  307.                     
  308.                         
  309.     <tr><!-- row 14 -->
  310.                             
  311.       <td><a href="../../sitemap/index.html" onMouseOver="on('button-map')" onMouseOut="off()"><img src="../../images/navbar/map.gif" name="button-map" border="0" width="122" height="14"></a></td>
  312.       <td><img name="FwShim_Row_14" src="../../images/shim.gif" width="1" height="14" border="0"></td>
  313.     </tr>
  314.                     
  315.                         
  316.     <tr><!-- row 15 -->
  317.                             
  318.       <td><a href="../../news/index.html" onMouseOver="on('button-whatsnew')" onMouseOut="off()"><img src="../../images/navbar/whatsnew.gif" name="button-whatsnew" border="0" width="122" height="14"></a></td>
  319.       <td><img name="FwShim_Row_15" src="../../images/shim.gif" width="1" height="14" border="0"></td>
  320.     </tr>
  321.                     
  322.                         
  323.     <tr><!-- row 16 -->
  324.                             
  325.       <td><a href="../../help/index.html" onMouseOver="on('button-help')" onMouseOut="off()"><img src="../../images/navbar/help.gif" name="button-help" border="0" width="122" height="14"></a></td>
  326.       <td><img name="FwShim_Row_16" src="../../images/shim.gif" width="1" height="14" border="0"></td>
  327.     </tr>
  328.                     
  329.                         
  330.     <tr><!-- row 17 -->
  331.                             
  332.       <td><a href="../../about/index.html" onMouseOver="on('button-about')" onMouseOut="off()"><img src="../../images/navbar/about.gif" name="button-about" border="0" width="122" height="14"></a></td>
  333.       <td><img name="FwShim_Row_17" src="../../images/shim.gif" width="1" height="14" border="0"></td>
  334.     </tr>
  335.                     
  336.                         
  337.     <tr><!-- row 18 -->
  338.                             
  339.       <td><a href="../../advertise/index.html" onMouseOver="on('button-advert')" onMouseOut="off()"><img src="../../images/navbar/advert.gif" name="button-advert" border="0" width="122" height="14"></a></td>
  340.       <td><img name="FwShim_Row_18" src="../../images/shim.gif" width="1" height="14" border="0"></td>
  341.     </tr>
  342.                         
  343.                         
  344.     <tr><!-- row 19 -->
  345.                             
  346.       <td><a href="../../investor_relations/index.html" onMouseOver="on('button-investors')" onMouseOut="off()"><img src="../../images/navbar/investors.gif" name="button-investors" border="0" height="15" width="122"></a></td>
  347.       <td><img name="FwShim_Row_13" src="../../images/shim.gif" width="1" height="14" border="0"></td>
  348.     </tr>
  349.                     
  350.                         
  351.     <tr><!-- row 20 -->
  352.                             
  353.       <td><a href="http://www.fcmail.com" onMouseOver="on('button-email')" onMouseOut="off()"><img src="../../images/navbar/email.gif" name="button-email" border="0" width="122" height="15"></a></td>
  354.       <td><img name="FwShim_Row_19" src="../../images/shim.gif" width="1" height="14" border="0"></td>
  355.     </tr>
  356.     <tr>
  357.       <td height="3" valign="top"><img src="../../images/nav_r21_c2.gif" name="nav_r21_c2" width="122" height="3" border="0"></td>
  358.       <td rowspan="2"><img name="FwShim_Row_20" src="../../images/shim.gif" width="1" height="14" border="0"></td>
  359.     </tr>
  360.     <tr>
  361.       <td colspan="2" height="3" valign="top" align="right"><img src="../../images/test03_r16_c03.gif" width="92" height="20"></td>
  362.  
  363.     </tr>
  364.     </tr>
  365.                     
  366.                         
  367.     
  368.                     
  369.                     
  370.       </table>
  371.     </td>
  372.     <td colspan="10" align="left" valign="bottom"><img  src="../../images/jointop.gif" name="jointop" width="185" height="41" border="0"><img src="../../images/spacer01.gif" width="129" height="41"></td>
  373.   </tr>
  374.   <tr><!-- row 8 --> 
  375.     <td colspan="13" align="left" valign="top"><img  src="../../images/joinmain.gif" name="joinmain" width="363" height="79" border="0"></td>
  376.     <td colspan="2"> </td>
  377.   </tr>
  378.   <tr><!-- row 9 --> 
  379.     <td colspan="15"> </td>
  380.   </tr>
  381.   <tr><!-- row 10 --> 
  382.     <td colspan="15" align="left">
  383.  
  384.       <SCRIPT LANGUAGE="JavaScript">
  385.  
  386. <!--
  387. var ord = (Math.random() + "") * 1000000000000000000
  388. document.writeln( "<IFRAME SRC=\"" + "http://ad.doubleclick.net/adi/fc.unicast/core/lostmap/map/unicast;s1=c;s2=lost;s3=map;pos=5;tag=i;sz=1x1;mtile=5;" + ord + "?\"" + "width=1 height=1 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>")
  389. document.writeln( "<A HREF=\"" + "http://ad.doubleclick.net/jump/fc.unicast/core/lostmap/map/unicast;abr=!ie;s1=c;s2=lost;s3=map;pos=5;tag=i;sz=1x1;mtile=5;" + ord + "?\">")
  390. document.writeln( "<IMG SRC=\"" + "http://ad.doubleclick.net/ad/fc.unicast/core/lostmap/map/unicast;abr=!ie;s1=c;s2=lost;s3=map;pos=5;tag=i;sz=1x1;mtile=5;" + ord + "?\"" + "height=1 width=1 border=0></A>")
  391. document.writeln( "</IFRAME>" )
  392. //-->
  393.  
  394. </SCRIPT>
  395.       <NOSCRIPT>
  396. <IFRAME SRC="http://ad.doubleclick.net/adi/fc.unicast/core/lostmap/map/unicast;s1=c;s2=lost;s3=map;pos=5;tag=i;sz=1x1;mtile=5; ord=1022?" width=1 height=1 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>
  397. <A HREF="http://ad.doubleclick.net/jump/fc.unicast/core/lostmap/map/unicast;abr=!ie;s1=c;s2=lost;s3=map;pos=5;tag=i;sz=1x1;mtile=5; ord=1022?"><IMG SRC="http://ad.doubleclick.net/ad/fc.unicast/core/lostmap/map/unicast;abr=!ie;s1=c;s2=lost;s3=map;pos=5;tag=i;sz=1x1;mtile=5; ord=1022?" height=1 width=1 border=0></A></IFRAME></NOSCRIPT>
  398.       <div align="left">
  399.         <SCRIPT LANGUAGE="JavaScript">
  400.  
  401. var ord = (Math.random() + "") * 1000000000000000000
  402. document.writeln( "<IFRAME SRC=\"" + "http://ad.doubleclick.net/adi/fc.us468/core/lostmap/map;s1=c;s2=lost;s3=map;pos=1;tag=i;sz=468x60;mtile=1;ord=" + ord + "?\" " + "width=468 height=60 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>")
  403. document.writeln( "<A HREF=\"" + "http://ad.doubleclick.net/jump/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=1;tag=i;sz=468x60;mtile=1;ord=" + ord + "?\">")
  404. document.writeln( "<IMG SRC=\"" + "http://ad.doubleclick.net/ad/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=1;tag=i;sz=468x60;mtile=1;ord=" + ord + "?\" " + "height=60 width=468 border=0></A>")
  405. document.writeln( "</IFRAME>" )
  406. //-->
  407.  
  408. </SCRIPT>
  409.       <NOSCRIPT>
  410. <IFRAME SRC="http://ad.doubleclick.net/adi/fc.us468/core/lostmap/map;s1=c;s2=lost;s3=map;pos=1;tag=i;sz=468x60;mtile=1; ord=1022?" width=468 height=60 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>
  411. <A HREF="http://ad.doubleclick.net/jump/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=1;tag=i;sz=468x60;mtile=1; ord=1022?"><IMG SRC="http://ad.doubleclick.net/ad/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=1;tag=i;sz=468x60;mtile=1; ord=1022?" height=60 width=468 border=0></A>
  412. </IFRAME>
  413. </NOSCRIPT>
  414.  
  415.     </div>
  416.     </td>
  417.   </tr>
  418.   <tr><!-- row 11 --> 
  419.     <td colspan="15"> </td>
  420.   </tr>
  421.   <tr><!-- row 12 --> 
  422.     <td colspan="15" align="right">
  423.  
  424.       <div align="left">
  425.         <SCRIPT LANGUAGE="JavaScript">
  426.  
  427. <!--
  428. document.writeln( "<IFRAME SRC=\"" + "http://ad.doubleclick.net/adi/fc.us468/core/lostmap/map;s1=c;s2=lost;s3=map;pos=2;tag=i;sz=468x60;mtile=2;ord=" + ord + "?\" " + "width=468 height=60 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>")
  429. document.writeln( "<A HREF=\"" + "http://ad.doubleclick.net/jump/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=2;tag=i;sz=468x60;mtile=2;ord=" + ord + "?\">")
  430. document.writeln( "<IMG SRC=\"" + "http://ad.doubleclick.net/ad/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=2;tag=i;sz=468x60;mtile=2;ord=" + ord + "?\" " + "height=60 width=468 border=0></A>")
  431. document.writeln( "</IFRAME>" )
  432. //-->
  433.  
  434. </SCRIPT>
  435.       <NOSCRIPT><IFRAME SRC="http://ad.doubleclick.net/adi/fc.us468/core/lostmap/map;s1=c;s2=lost;s3=map;pos=2;tag=i;sz=468x60;mtile=2; ord=1022?" width=468 height=60 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no><A HREF="http://ad.doubleclick.net/jump/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=2;tag=i;sz=468x60;mtile=2; ord=1022?"><IMG SRC="http://ad.doubleclick.net/ad/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=2;tag=i;sz=468x60;mtile=2; ord=1022?" height=60 width=468 border=0></A>
  436. </IFRAME>
  437. </NOSCRIPT>
  438.  
  439. <br>
  440. <br>
  441. <SCRIPT LANGUAGE="JavaScript">
  442.  
  443. <!--
  444. document.writeln( "<IFRAME SRC=\"" + "http://ad.doubleclick.net/adi/fc.us468/core/lostmap/map;s1=c;s2=lost;s3=map;pos=3;tag=i;sz=468x60;mtile=3;ord=" + ord + "?\" " + "width=468 height=60 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>")
  445. document.writeln( "<A HREF=\"" + "http://ad.doubleclick.net/jump/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=3;tag=i;sz=468x60;mtile=3;ord=" + ord + "?\">")
  446. document.writeln( "<IMG SRC=\"" + "http://ad.doubleclick.net/ad/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=3;tag=i;sz=468x60;mtile=3;ord=" + ord + "?\" " + "height=60 width=468 border=0></A>")
  447. document.writeln( "</IFRAME>" )
  448. //-->
  449.  
  450. </SCRIPT>
  451.       <NOSCRIPT>
  452. <IFRAME SRC="http://ad.doubleclick.net/adi/fc.us468/core/lostmap/map;s1=c;s2=lost;s3=map;pos=3;tag=i;sz=468x60;mtile=3; ord=1022?" width=468 height=60 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>
  453. <A HREF="http://ad.doubleclick.net/jump/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=3;tag=i;sz=468x60;mtile=3; ord=1022?"><IMG SRC="http://ad.doubleclick.net/ad/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=3;tag=i;sz=468x60;mtile=3; ord=1022?" height=60 width=468 border=0></A>
  454. </IFRAME>
  455. </NOSCRIPT>
  456.  
  457. <br>
  458. <br>
  459. <SCRIPT LANGUAGE="JavaScript">
  460.  
  461. <!--
  462. document.writeln( "<IFRAME SRC=\"" + "http://ad.doubleclick.net/adi/fc.us468/core/lostmap/map;s1=c;s2=lost;s3=map;pos=4;tag=i;sz=468x60;mtile=4;ord=" + ord + "?\"" + "width=468 height=60 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>")
  463. document.writeln( "<A HREF=\"" + "http://ad.doubleclick.net/jump/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=4;tag=i;sz=468x60;mtile=4;ord=" + ord + "?\">")
  464. document.writeln( "<IMG SRC=\"" + "http://ad.doubleclick.net/ad/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=4;tag=i;sz=468x60;mtile=4;ord=" + ord + "?\"" + "height=60 width=468 border=0></A>")
  465. document.writeln( "</IFRAME>" )
  466. //-->
  467.  
  468. </SCRIPT>
  469.       <NOSCRIPT>
  470. <IFRAME SRC="http://ad.doubleclick.net/adi/fc.us468/core/lostmap/map;s1=c;s2=lost;s3=map;pos=4;tag=i;sz=468x60;mtile=4; ord=1022?" width=468 height=60 frameborder=no border=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>
  471. <A HREF="http://ad.doubleclick.net/jump/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=4;tag=i;sz=468x60;mtile=4;ord=1022?"><IMG SRC="http://ad.doubleclick.net/ad/fc.us468/core/lostmap/map;abr=!ie;s1=c;s2=lost;s3=map;pos=4;tag=i;sz=468x60;mtile=4; ord=1022?" height=60 width=468 border=0></A>
  472. </IFRAME>
  473. </NOSCRIPT>
  474. </div>
  475.     </td>
  476.   </tr>
  477.   <tr><!-- row 13 --> 
  478.     <td colspan="15"> </td>
  479.   </tr>
  480.   <tr><!-- row 14 --> 
  481.     <td rowspan="2" colspan="2"> </td>
  482.     <td colspan="4" height="56">
  483.  
  484.  
  485. </td>
  486.     <td rowspan="2" width="7"> </td>
  487.     <td colspan="5" height="56">
  488.  
  489.   
  490.  
  491. </td>
  492.     <td rowspan="2" colspan="3"> </td>
  493.   </tr>
  494.   <tr><!-- row 15 --> 
  495.     <td colspan="4"> </td>
  496.     <td colspan="5"> </td>
  497.   </tr>
  498.   
  499. </table>
  500.  
  501.  
  502. </body>
  503.  
  504. </html>
  505.  
  506.