js/src/tests/ecma_3/RegExp/regress-209067.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 /*
michael@0 7 *
michael@0 8 * Date: 12 June 2003
michael@0 9 * SUMMARY: Testing complicated str.replace()
michael@0 10 *
michael@0 11 * See http://bugzilla.mozilla.org/show_bug.cgi?id=209067
michael@0 12 *
michael@0 13 */
michael@0 14 //-----------------------------------------------------------------------------
michael@0 15 var UBound = 0;
michael@0 16 var BUGNUMBER = 209067;
michael@0 17 var summary = 'Testing complicated str.replace()';
michael@0 18 var status = '';
michael@0 19 var statusitems = [];
michael@0 20 var actual = '';
michael@0 21 var actualvalues = [];
michael@0 22 var expect= '';
michael@0 23 var expectedvalues = [];
michael@0 24
michael@0 25
michael@0 26 function formatHTML(h)
michael@0 27 {
michael@0 28 // a replace function used in the succeeding lines -
michael@0 29 function S(s)
michael@0 30 {
michael@0 31 return s.replace(/</g,'&lt;').replace(/>/g,'&gt;');
michael@0 32 }
michael@0 33
michael@0 34 h+='\n';
michael@0 35 h=h.replace(/&([^\s]+;)/g,'&lt;&amp;$1&gt;');
michael@0 36 h=h.replace(new RegExp('<!-'+'-[\\s\\S]*-'+'->','g'), S);
michael@0 37 h=h.replace(/"[^"]*"/g,S);
michael@0 38 h=h.replace(/'[^']*'/g,S);
michael@0 39
michael@0 40
michael@0 41 h=h.replace(/<([^>]*)>/g,
michael@0 42 function(s,p)
michael@0 43 {
michael@0 44 if(s.match(/!doctype/i))
michael@0 45 return'<span class=doctype>&lt;' + p + '&gt;</span>';
michael@0 46
michael@0 47 p=p.replace(/\\'/g,'\\&#39;').replace(/\\"/g,'\\&#34;').replace(/^\s/,'');
michael@0 48 p=p.replace(/(\s)([^<]+)$/g,
michael@0 49 function(s,p1,p2)
michael@0 50 {
michael@0 51 p2=p2.replace(/(=)(\s*[^"'][^\s]*)(\s|$)/g,'$1<span class=attribute-value>$2</span>$3');
michael@0 52 p2=p2.replace(/("[^"]*")/g,'<span class=attribute-value>$1</span>');
michael@0 53 p2=p2.replace(/('[^']*')/g,'<span class=attribute-value>$1</span>');
michael@0 54 return p1 + '<span class=attribute-name>'+p2+'</span>';
michael@0 55 }
michael@0 56 )
michael@0 57
michael@0 58 return'&lt;<span class=' + (s.match(/<\s*\//)?'end-tag':'start-tag') + '>' + p + '</span>&gt;';
michael@0 59 }
michael@0 60 )
michael@0 61
michael@0 62
michael@0 63 h=h.replace(/&lt;(&[^\s]+;)&gt;/g,'<span class=entity>$1</span>');
michael@0 64 h=h.replace(/(&lt;!--[\s\S]*--&gt;)/g,'<span class=comment>$1</span>');
michael@0 65
michael@0 66
michael@0 67 numer=1;
michael@0 68 h=h.replace(/(.*\n)/g,
michael@0 69 function(s,p)
michael@0 70 {
michael@0 71 return (numer++) +'. ' + p;
michael@0 72 }
michael@0 73 )
michael@0 74
michael@0 75
michael@0 76 return'<span class=text>' + h + '</span>';
michael@0 77 }
michael@0 78
michael@0 79
michael@0 80
michael@0 81 /*
michael@0 82 * sanity check
michael@0 83 */
michael@0 84 status = inSection(1);
michael@0 85 actual = formatHTML('abc');
michael@0 86 expect = '<span class=text>1. abc\n</span>';
michael@0 87 addThis();
michael@0 88
michael@0 89
michael@0 90 /*
michael@0 91 * The real test: can we run this without crashing?
michael@0 92 * We are not validating the result, just running it.
michael@0 93 */
michael@0 94 status = inSection(2);
michael@0 95 var HUGE_TEST_STRING = hugeString();
michael@0 96 formatHTML(HUGE_TEST_STRING);
michael@0 97
michael@0 98
michael@0 99
michael@0 100
michael@0 101 //-----------------------------------------------------------------------------
michael@0 102 test();
michael@0 103 //-----------------------------------------------------------------------------
michael@0 104
michael@0 105
michael@0 106
michael@0 107 function addThis()
michael@0 108 {
michael@0 109 statusitems[UBound] = status;
michael@0 110 actualvalues[UBound] = actual;
michael@0 111 expectedvalues[UBound] = expect;
michael@0 112 UBound++;
michael@0 113 }
michael@0 114
michael@0 115
michael@0 116 function test()
michael@0 117 {
michael@0 118 enterFunc('test');
michael@0 119 printBugNumber(BUGNUMBER);
michael@0 120 printStatus(summary);
michael@0 121
michael@0 122 for (var i=0; i<UBound; i++)
michael@0 123 {
michael@0 124 reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
michael@0 125 }
michael@0 126
michael@0 127 exitFunc ('test');
michael@0 128 }
michael@0 129
michael@0 130
michael@0 131 function hugeString()
michael@0 132 {
michael@0 133 var s = '';
michael@0 134
michael@0 135 s += '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">';
michael@0 136 s += '<html lang="en">';
michael@0 137 s += '<head>';
michael@0 138 s += ' <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">';
michael@0 139 s += ' <meta http-equiv="refresh" content="1800">';
michael@0 140 s += ' <title>CNN.com</title>';
michael@0 141 s += ' <link rel="Start" href="/">';
michael@0 142 s += ' <link rel="Search" href="/search/">';
michael@0 143 s += ' <link rel="stylesheet" href="http://i.cnn.net/cnn/.element/ssi/css/1.0/main.css" type="text/css">';
michael@0 144 s += ' <script language="JavaScript1.2" src="http://i.cnn.net/cnn/.element/ssi/js/1.0/main.js" type="text/javascript"></script>';
michael@0 145 s += '<script language="JavaScript1.1" src="http://ar.atwola.com/file/adsWrapper.js"></script>';
michael@0 146 s += '<style type="text/css">';
michael@0 147 s += '<!--';
michael@0 148 s += '.aoltextad { text-align: justify; font-size: 12px; color: black; font-family: Georgia, sans-serif }';
michael@0 149 s += '-->';
michael@0 150 s += '</style>';
michael@0 151 s += '<script language="JavaScript1.1" type="text/javascript" src="http://ar.atwola.com/file/adsPopup2.js"></script>';
michael@0 152 s += '<script language="JavaScript">';
michael@0 153 s += 'document.adoffset = 0;';
michael@0 154 s += 'document.adPopupDomain = "www.cnn.com";';
michael@0 155 s += 'document.adPopupFile = "/cnn_adspaces/adsPopup2.html";';
michael@0 156 s += 'document.adPopupInterval = "P24";';
michael@0 157 s += 'document.adPopunderInterval = "P24";';
michael@0 158 s += 'adSetOther("&TVAR="+escape("class=us.low"));';
michael@0 159 s += '</script>';
michael@0 160 s += '';
michael@0 161 s += ' ';
michael@0 162 s += '</head>';
michael@0 163 s += '<body class="cnnMainPage">';
michael@0 164 s += '';
michael@0 165 s += '';
michael@0 166 s += '';
michael@0 167 s += '<a name="top_of_page"></a>';
michael@0 168 s += '<a href="#ContentArea"><img src="http://i.cnn.net/cnn/images/1.gif" alt="Click here to skip to main content." width="10" height="1" border="0" align="right"></a>';
michael@0 169 s += '<table width="770" border="0" cellpadding="0" cellspacing="0" style="speak: none">';
michael@0 170 s += ' <col width="229">';
michael@0 171 s += ' <col width="73">';
michael@0 172 s += ' <col width="468">';
michael@0 173 s += ' <tr>';
michael@0 174 s += ' <td colspan="3"><!--';
michael@0 175 s += '[[!~~ netscape hat ~~]][[table border="0" cellpadding="0" cellspacing="0" width="100%"]][[tr]][[td]][[script Language="Javascript" SRC="http://toolbar.aol.com/dashboard.twhat?dom=cnn" type="text/javascript"]][[/script]][[/td]][[/tr]][[/table]]';
michael@0 176 s += '';
michael@0 177 s += '[[div]][[img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="2" border="0"]][[/div]]';
michael@0 178 s += '-->';
michael@0 179 s += ' </td>';
michael@0 180 s += ' </tr>';
michael@0 181 s += ' <tr valign="bottom">';
michael@0 182 s += ' <td width="229" style="speak: normal"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/logo/cnn.gif" alt="CNN.com" width="229" height="52" border="0"></td>';
michael@0 183 s += ' <td width="73"></td>';
michael@0 184 s += ' <td width="468" align="right">';
michael@0 185 s += ' <!-- home/bottom.468x60 -->';
michael@0 186 s += '<script language="JavaScript1.1">';
michael@0 187 s += '<!--';
michael@0 188 s += 'adSetTarget("_top");';
michael@0 189 s += 'htmlAdWH( (new Array(93103287,93103287,93103300,93103300))[document.adoffset||0] , 468, 60);';
michael@0 190 s += '//-->';
michael@0 191 s += '</script>';
michael@0 192 s += '<noscript><a href="http://ar.atwola.com/link/93103287/aol" target="_top"><img src="http://ar.atwola.com/image/93103287/aol" alt="Click Here" width="468" height="60" border="0"></a></noscript> ';
michael@0 193 s += '';
michael@0 194 s += '';
michael@0 195 s += '';
michael@0 196 s += '';
michael@0 197 s += ' </td>';
michael@0 198 s += ' </tr>';
michael@0 199 s += ' <tr><td colspan="3"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="2"></td></tr>';
michael@0 200 s += ' <tr>';
michael@0 201 s += ' <td colspan="3">';
michael@0 202 s += '</td>';
michael@0 203 s += ' </tr>';
michael@0 204 s += ' <tr><td colspan="3" bgcolor="#CC0000"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="3"></td></tr>';
michael@0 205 s += ' <tr>';
michael@0 206 s += ' <td colspan="3">';
michael@0 207 s += '';
michael@0 208 s += '<table width="770" border="0" cellpadding="0" cellspacing="0">';
michael@0 209 s += ' <form action="http://search.cnn.com/cnn/search" method="get" onsubmit="return CNN_validateSearchForm(this);">';
michael@0 210 s += '<input type="hidden" name="source" value="cnn">';
michael@0 211 s += '<input type="hidden" name="invocationType" value="search/top">';
michael@0 212 s += ' <tr><td colspan="4"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="1" border="0"></td></tr>';
michael@0 213 s += ' <tr><td colspan="4" bgcolor="#003366"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="3" border="0"></td></tr>';
michael@0 214 s += ' <tr>';
michael@0 215 s += ' <td rowspan="2"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/searchbar/bar.search.gif" alt="SEARCH" width="110" height="27" border="0"></td>';
michael@0 216 s += ' <td colspan="2"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/searchbar/bar.top.bevel.gif" alt="" width="653" height="3" border="0"></td>';
michael@0 217 s += ' <td rowspan="2"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/searchbar/bar.right.bevel.gif" alt="" width="7" height="27" border="0"></td>';
michael@0 218 s += ' </tr>';
michael@0 219 s += ' <tr bgcolor="#B6D8E0">';
michael@0 220 s += ' <td><table border="0" cellpadding="0" cellspacing="0">';
michael@0 221 s += ' <tr>';
michael@0 222 s += ' <td>&nbsp;&nbsp;</td>';
michael@0 223 s += ' <td nowrap><span class="cnnFormTextB" style="color:#369">The Web</span></td>';
michael@0 224 s += ' <td><input type="radio" name="sites" value="google" checked></td>';
michael@0 225 s += ' <td>&nbsp;&nbsp;</td>';
michael@0 226 s += ' <td><span class="cnnFormTextB" style="color:#369;">CNN.com</span></td>';
michael@0 227 s += ' <td><input type="radio" name="sites" value="cnn"></td>';
michael@0 228 s += ' <td>&nbsp;&nbsp;</td>';
michael@0 229 s += ' <td><input type="text" name="query" class="cnnFormText" value="" title="Enter text to search for and click Search" size="35" maxlength="40" style="width: 280px"></td>';
michael@0 230 s += ' <td>&nbsp;<input type="Submit" value="Search" class="cnnNavButton" style="padding: 0px; margin: 0px; width: 50px"></td>';
michael@0 231 s += ' </tr>';
michael@0 232 s += ' </table></td>';
michael@0 233 s += ' <td align="right"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/searchbar/bar.google.gif" alt="enhanced by Google" width="137" height="24" border="0"></td>';
michael@0 234 s += ' </tr>';
michael@0 235 s += ' <tr><td colspan="4"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/searchbar/bar.bottom.bevel.gif" alt="" width="770" height="3" border="0"></td></tr>';
michael@0 236 s += ' </form>';
michael@0 237 s += '</table>';
michael@0 238 s += ' </td>';
michael@0 239 s += ' </tr>';
michael@0 240 s += '';
michael@0 241 s += '';
michael@0 242 s += '</table>';
michael@0 243 s += '';
michael@0 244 s += '<table width="770" border="0" cellpadding="0" cellspacing="0">';
michael@0 245 s += ' <col width="126" align="left" valign="top">';
michael@0 246 s += ' <col width="10">';
michael@0 247 s += ' <col width="280">';
michael@0 248 s += ' <col width="10">';
michael@0 249 s += ' <col width="344">';
michael@0 250 s += ' <tr valign="top">';
michael@0 251 s += ' <td rowspan="5" width="126" style="speak: none"><table id="cnnNavBar" width="126" bgcolor="#EEEEEE" border="0" cellpadding="0" cellspacing="0" summary="CNN.com Navigation">';
michael@0 252 s += ' <col width="8" align="left" valign="top">';
michael@0 253 s += ' <col width="118" align="left" valign="top">';
michael@0 254 s += ' <tr bgcolor="#CCCCCC" class="cnnNavHiliteRow"><td width="8" class="swath">&nbsp;</td>';
michael@0 255 s += ' <td class="cnnNavHilite" onClick="CNN_goTo("/")"><div class="cnnNavText"><a href="/">Home Page</a></div></td></tr>';
michael@0 256 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 257 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/WORLD/")"><div class="cnnNavText"><a href="/WORLD/">World</a></div></td></tr>';
michael@0 258 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 259 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/US/")"><div class="cnnNavText"><a href="/US/">U.S.</a></div></td></tr>';
michael@0 260 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 261 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/WEATHER/")"><div class="cnnNavText"><a href="/WEATHER/">Weather</a></div></td></tr>';
michael@0 262 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 263 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/money/")"><div class="cnnNavText"><a href="/money/">Business</a>&nbsp;<a href="/money/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/nav_at_money.gif" alt="at CNN/Money" width="51" height="5" border="0"></a></div></td></tr>';
michael@0 264 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 265 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/cnnsi/")"><div class="cnnNavText"><a href="/si/">Sports</a>&nbsp;<a href="/si/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/nav_at_si.gif" alt="at SI.com" width="50" height="5" border="0"></a></div></td></tr>';
michael@0 266 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 267 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/ALLPOLITICS/")"><div class="cnnNavText"><a href="/ALLPOLITICS/">Politics</a></div></td></tr>';
michael@0 268 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 269 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/LAW/")"><div class="cnnNavText"><a href="/LAW/">Law</a></div></td></tr>';
michael@0 270 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 271 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/TECH/")"><div class="cnnNavText"><a href="/TECH/">Technology</a></div></td></tr>';
michael@0 272 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 273 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/TECH/space/")"><div class="cnnNavText"><a href="/TECH/space/">Science &amp; Space</a></div></td></tr>';
michael@0 274 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 275 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/HEALTH/")"><div class="cnnNavText"><a href="/HEALTH/">Health</a></div></td></tr>';
michael@0 276 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 277 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/SHOWBIZ/")"><div class="cnnNavText"><a href="/SHOWBIZ/">Entertainment</a></div></td></tr>';
michael@0 278 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 279 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/TRAVEL/")"><div class="cnnNavText"><a href="/TRAVEL/">Travel</a></div></td></tr>';
michael@0 280 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 281 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/EDUCATION/")"><div class="cnnNavText"><a href="/EDUCATION/">Education</a></div></td></tr>';
michael@0 282 s += ' <tr class="cnnNavRow"><td class="swath">&nbsp;</td>';
michael@0 283 s += ' <td class="cnnNav" onMouseOver="CNN_navBar(this,1,1)" onMouseOut="CNN_navBar(this,0,1)" onClick="CNN_navBarClick(this,1,"/SPECIALS/")"><div class="cnnNavText"><a href="/SPECIALS/">Special Reports</a></div></td></tr>';
michael@0 284 s += ' <tr bgcolor="#FFFFFF"><td class="cnnNavAd" colspan="2" align="center"><!-- home/left.120x90 -->';
michael@0 285 s += '<script language="JavaScript1.1">';
michael@0 286 s += '<!--';
michael@0 287 s += 'adSetTarget("_top");';
michael@0 288 s += 'htmlAdWH( (new Array(93166917,93166917,93170132,93170132))[document.adoffset||0] , 120, 90);';
michael@0 289 s += '//-->';
michael@0 290 s += '</script><noscript><a href="http://ar.atwola.com/link/93166917/aol" target="_top"><img src="http://ar.atwola.com/image/93166917/aol" alt="Click here for our advertiser" width="120" height="90" border="0"></a></noscript></td></tr>';
michael@0 291 s += ' <tr bgcolor="#999999" class="cnnNavGroupRow">';
michael@0 292 s += ' <td colspan="2" class="cnnNavGroup"><div class="cnnNavText">SERVICES</div></td></tr>';
michael@0 293 s += ' <tr class="cnnNavOtherRow"><td class="swath">&nbsp;</td>';
michael@0 294 s += ' <td class="cnnNavOther" onMouseOver="CNN_navBar(this,1,0)" onMouseOut="CNN_navBar(this,0,0)" onClick="CNN_navBarClick(this,0,"/video/")"><div class="cnnNavText"><a href="/video/">Video</a></div></td></tr>';
michael@0 295 s += ' <tr class="cnnNavOtherRow"><td class="swath">&nbsp;</td>';
michael@0 296 s += ' <td class="cnnNavOther" onMouseOver="CNN_navBar(this,1,0)" onMouseOut="CNN_navBar(this,0,0)" onClick="CNN_navBarClick(this,0,"/EMAIL/")"><div class="cnnNavText"><a href="/EMAIL/">E-Mail Services</a></div></td></tr>';
michael@0 297 s += ' <tr class="cnnNavOtherRow"><td class="swath">&nbsp;</td>';
michael@0 298 s += ' <td class="cnnNavOther" onMouseOver="CNN_navBar(this,1,0)" onMouseOut="CNN_navBar(this,0,0)" onClick="CNN_navBarClick(this,0,"/mobile/CNNtoGO/")"><div class="cnnNavText"><a href="/mobile/CNNtoGO/">CNN To Go</a></div></td></tr>';
michael@0 299 s += ' <tr bgcolor="#999999" class="cnnNavGroupRow">';
michael@0 300 s += ' <td colspan="2" class="cnnNavGroup" style="background-color: #445B60"><div class="cnnNavText" style="color: #fff">SEARCH</div></td></tr>';
michael@0 301 s += ' <tr bgcolor="#CCCCCC"><td colspan="2" class="cnnNavSearch" style="background-color:#B6D8E0">';
michael@0 302 s += '';
michael@0 303 s += '<form action="http://search.cnn.com/cnn/search" method="get" name="nav_bottom_search" onSubmit="return CNN_validateSearchForm(this)" style="margin: 0px;">';
michael@0 304 s += ' <input type="hidden" name="sites" value="cnn">';
michael@0 305 s += ' <input type="hidden" name="source" value="cnn">';
michael@0 306 s += ' <input type="hidden" name="invocationType" value="side/bottom">';
michael@0 307 s += '<table width="100%" border="0" cellpadding="0" cellspacing="4">';
michael@0 308 s += ' <tr><td colspan="2"><table width="100%" border="0" cellpadding="0" cellspacing="0">';
michael@0 309 s += ' <tr>';
michael@0 310 s += ' <td align="left"><span class="cnnFormTextB" style="color: #369">Web</span></td>';
michael@0 311 s += ' <td><input type="radio" name="sites" value="google" checked></td>';
michael@0 312 s += ' <td align="right"><span class="cnnFormTextB" style="color: #369">CNN.com</span></td>';
michael@0 313 s += ' <td><input type="radio" name="sites" value="cnn"></td>';
michael@0 314 s += ' </tr>';
michael@0 315 s += ' </table></td></tr>';
michael@0 316 s += ' <tr><td colspan="2"><input type="text" name="query" class="cnnFormText" value="" title="Enter text to search for and click Search" size="7" maxlength="40" style="width: 100%"></td></tr>';
michael@0 317 s += ' <tr valign="top">';
michael@0 318 s += ' <td><input type="submit" value="Search" class="cnnNavButton" style="padding: 0px; margin: 0px; width: 50px"></td>';
michael@0 319 s += ' <td align="right"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/sect/SEARCH/nav.search.gif" alt="enhanced by Google" width="54" height="27"></td>';
michael@0 320 s += ' </tr>';
michael@0 321 s += '</table>';
michael@0 322 s += '';
michael@0 323 s += '';
michael@0 324 s += '';
michael@0 325 s += '</td></form></tr>';
michael@0 326 s += '</table>';
michael@0 327 s += '';
michael@0 328 s += ' </td>';
michael@0 329 s += ' <td rowspan="5" width="10"><a name="ContentArea"></a><img id="accessibilityPixel" src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="7" border="0"></td>';
michael@0 330 s += ' <td colspan="3" valign="middle">';
michael@0 331 s += ' <table border="0" cellpadding="0" cellspacing="0" width="100%">';
michael@0 332 s += ' <tr>';
michael@0 333 s += ' <td valign="top" nowrap><div class="cnnFinePrint" style="color: #333;padding:6px;padding-left:0px;">Updated: 05:53 p.m. EDT (2153 GMT) June 12, 2003</div></td>';
michael@0 334 s += ' <td align="right" nowrap class="cnnt1link"><a href="http://edition.cnn.com/">Visit International Edition</a>&nbsp;</td>';
michael@0 335 s += ' </tr><!--include virtual="/.element/ssi/sect/MAIN/1.0/banner.html"-->';
michael@0 336 s += ' </table>';
michael@0 337 s += ' </td>';
michael@0 338 s += ' </tr>';
michael@0 339 s += ' <tr valign="top">';
michael@0 340 s += ' <td rowspan="2" width="280" bgcolor="#EAEFF4">';
michael@0 341 s += '';
michael@0 342 s += '<!-- T1 -->';
michael@0 343 s += ' ';
michael@0 344 s += ' <a href="/2003/SHOWBIZ/Movies/06/12/obit.peck/index.html"><img src="http://i.cnn.net/cnn/2003/SHOWBIZ/Movies/06/12/obit.peck/top.peck.obit.jpg" alt="Oscar-winner Peck dies" width="280" height="210" border="0" hspace="0" vspace="0"></a>';
michael@0 345 s += '';
michael@0 346 s += ' <div class="cnnMainT1">';
michael@0 347 s += ' <h2 style="font-size:20px;"><a href="/2003/SHOWBIZ/Movies/06/12/obit.peck/index.html">Oscar-winner Peck dies</a></h2>';
michael@0 348 s += '<p>';
michael@0 349 s += 'Actor Gregory Peck, who won an Oscar for his portrayal of upstanding lawyer Atticus Finch in 1962s "To Kill a Mockingbird," has died at age 87. Peck was best known for roles of dignified statesmen and people who followed a strong code of ethics. But he also could play against type. All told, Peck was nominated for five Academy Awards.';
michael@0 350 s += '</p>';
michael@0 351 s += ' <p>';
michael@0 352 s += ' <b><a href="/2003/SHOWBIZ/Movies/06/12/obit.peck/index.html" class="cnnt1link">FULL STORY</a></b>';
michael@0 353 s += ' </p>';
michael@0 354 s += '';
michael@0 355 s += '';
michael@0 356 s += '';
michael@0 357 s += '&#8226; <span class="cnnBodyText" style="font-weight:bold;color:#333;">Video: </span><img src="http://i.cnn.net/cnn/.element/img/1.0/misc/premium.gif" alt="premium content" width="9" height="11" hspace="0" vspace="0" border="0" align="absmiddle"> <a href="javascript:LaunchVideo("/showbiz/2003/06/12/peck.obit.affl.","300k");">A leading mans leading man</a><br>';
michael@0 358 s += '';
michael@0 359 s += '';
michael@0 360 s += '';
michael@0 361 s += ' ';
michael@0 362 s += '&#8226; <span class="cnnBodyText" style="font-weight:bold;color:#333">Interactive: </span> <a href="javascript:CNN_openPopup("/interactive/entertainment/0306/peck.obit/frameset.exclude.html","620x430","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=620,height=430")">Gregory Peck through the years</a><br>';
michael@0 363 s += '';
michael@0 364 s += ' ';
michael@0 365 s += '&#8226; <a href="http://www.cnn.com/2003/SHOWBIZ/Movies/06/12/peck.filmography/index.html" target="new">Gregory Peck filmography</a><img src="http://i.cnn.net/cnn/.element/img/1.0/misc/icon.external.links.gif" alt="external link" width="20" height="13" vspace="1" hspace="4" border="0" align="top"><br>';
michael@0 366 s += '';
michael@0 367 s += ' ';
michael@0 368 s += '&#8226; <a href="http://www.cnn.com/2003/SHOWBIZ/Movies/06/04/heroes.villains.ap/index.html" target="new">Pecks Finch chararcter AFIs top hero</a><img src="http://i.cnn.net/cnn/.element/img/1.0/misc/icon.external.links.gif" alt="external link" width="20" height="13" vspace="1" hspace="4" border="0" align="top"><br>';
michael@0 369 s += ' </div>';
michael@0 370 s += '';
michael@0 371 s += '<!-- /T1 -->';
michael@0 372 s += ' </td>';
michael@0 373 s += ' ';
michael@0 374 s += ' <td rowspan="2" width="10"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="10" height="1"></td>';
michael@0 375 s += ' <td width="344">';
michael@0 376 s += '';
michael@0 377 s += '';
michael@0 378 s += '';
michael@0 379 s += '';
michael@0 380 s += '<!-- T2 -->';
michael@0 381 s += '';
michael@0 382 s += '<div><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_c00.gif" alt="" width="344" height="2"></div>';
michael@0 383 s += '<table width="344" border="0" cellpadding="0" cellspacing="0">';
michael@0 384 s += ' <tr>';
michael@0 385 s += ' <td width="285" class="cnnTabbedBoxHeader" style="padding-left:0px;"><span class="cnnBigPrint"><b>MORE TOP STORIES</b></span></td>';
michael@0 386 s += ' <td width="59" class="cnnTabbedBoxTab" align="right" bgcolor="#336699"><a href="/userpicks"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/userpicks.gif" alt=" Hot Stories " width="59" height="11" border="0"></a></td>';
michael@0 387 s += ' </tr>';
michael@0 388 s += '</table>';
michael@0 389 s += '<div style="padding:6px;padding-left:0px;">';
michael@0 390 s += '';
michael@0 391 s += ' ';
michael@0 392 s += '<div class="cnnMainNewT2">&#8226; <a href="/2003/WORLD/meast/06/12/mideast/index.html">7 dead in new Gaza strike</a>';
michael@0 393 s += '| <img src="http://i.cnn.net/cnn/.element/img/1.0/misc/premium.gif" alt="premium content" width="9" height="11" hspace="0" vspace="0" border="0" align="absmiddle"> <a href="javascript:LaunchVideo("/world/2003/06/11/cb.bush.roadmap.ap.","300k");">Video</a><br></div>';
michael@0 394 s += '';
michael@0 395 s += ' ';
michael@0 396 s += '<div class="cnnMainNewT2">&#8226; <a href="/2003/WORLD/meast/06/12/sprj.irq.main/index.html">U.S. helicopter, jet down in Iraqi raid</a>';
michael@0 397 s += '| <img src="http://i.cnn.net/cnn/.element/img/1.0/misc/premium.gif" alt="premium content" width="9" height="11" hspace="0" vspace="0" border="0" align="absmiddle"> <a href="javascript:LaunchVideo("/iraq/2003/06/11/bw.iraq.oil.cnn.","300k");">Video</a><br></div>';
michael@0 398 s += '';
michael@0 399 s += ' ';
michael@0 400 s += '<div class="cnnMainNewT2">&#8226; <a href="/2003/SHOWBIZ/TV/06/12/obit.brinkley/index.html">Television icon David Brinkley dead at 82</a><br></div>';
michael@0 401 s += '';
michael@0 402 s += ' ';
michael@0 403 s += '<div class="cnnMainNewT2">&#8226; <a href="/2003/LAW/06/12/peterson.case/index.html">Peterson search warrants will be made public in July</a><br></div>';
michael@0 404 s += '';
michael@0 405 s += ' ';
michael@0 406 s += '<div class="cnnMainNewT2">&#8226; <a href="/2003/WORLD/asiapcf/east/06/12/okinawa.rape/index.html">U.S. Marine held in new Okinawa rape case</a><br></div>';
michael@0 407 s += '';
michael@0 408 s += ' ';
michael@0 409 s += '<div class="cnnMainNewT2">&#8226; <a href="/2003/TECH/space/06/12/sprj.colu.bolts.ap/index.html">New threat discovered for shuttle launches</a><br></div>';
michael@0 410 s += '';
michael@0 411 s += ' ';
michael@0 412 s += '<div class="cnnMainNewT2">&#8226; <a href="/2003/SHOWBIZ/TV/06/12/television.sopranos.reut/index.html">"Soprano" Gandolfini shares his wealth with castmates</a><br></div>';
michael@0 413 s += '<!--[[div class="cnnMainNewT2"]]&#8226;&nbsp;[[b]][[span style="color:#C00;"]]CNN[[/span]]Radio:[[/b]]&nbsp;[[a href="javascript:CNN_openPopup("/audio/radio/preferences.html","radioplayer","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height=124")"]]Bush on Medicare[[/a]]&nbsp;[[a href="javascript:CNN_openPopup("/audio/radio/preferences.html","radioplayer","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height=124")"]][[img src="http://i.a.cnn.net/cnn/.element/img/1.0/misc/live.video.gif" alt="" width="61" height="14" vspace="0" hspace="2" align="absmiddle" border="0"]][[/a]][[img src="http://i.a.cnn.net/cnn/.element/img/1.0/misc/audio.gif" alt="" width="10" height="10" vspace="0" hspace="2" align="absmiddle"]][[br]][[/div]]--></div>';
michael@0 414 s += '';
michael@0 415 s += '<!-- /T2 -->';
michael@0 416 s += '<div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="10"></div>';
michael@0 417 s += '';
michael@0 418 s += '<!--include virtual="/.element/ssi/misc/1.0/war.zone.smmap.txt"-->';
michael@0 419 s += '<!-- =========== CNN Radio/Video Box =========== -->';
michael@0 420 s += '<!-- top line --> ';
michael@0 421 s += '<div><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_ccc.gif" alt="" width="344" height="1"></div>';
michael@0 422 s += '<!-- /top line -->';
michael@0 423 s += ' <table width="344" border="0" cellpadding="0" cellspacing="0">';
michael@0 424 s += ' <tr valign="top">';
michael@0 425 s += '<!-- left-side line --> ';
michael@0 426 s += ' <td bgcolor="#CCCCCC" width="1"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="30" hspace="0" vspace="0" border="0"></td>';
michael@0 427 s += '<!-- /left-side line --> ';
michael@0 428 s += '<!-- CNNRadio cell -->';
michael@0 429 s += ' <td width="114"><div class="cnn6pxPad">';
michael@0 430 s += ' <span class="cnnBigPrint" style="color:#C00;font-weight:bold;">CNN</span><span class="cnnBigPrint" style="color:#000;font-weight:bold;">RADIO</span>';
michael@0 431 s += '<div class="cnnMainNewT2"><a href="javascript:CNN_openPopup("/audio/radio/preferences.html","radioplayer","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height=124")">Listen to latest updates</a><img src="http://i.a.cnn.net/cnn/.element/img/1.0/misc/audio.gif" alt="" width="10" height="10" vspace="0" hspace="2" align="absmiddle">';
michael@0 432 s += '<div><img src="http://i.a.cnn.net/cnn/images/1.gif" alt="" width="1" height="5" hspace="0" vspace="0"></div>';
michael@0 433 s += '<!--';
michael@0 434 s += '[[span class="cnnFinePrint"]]sponsored by:[[/span]][[br]][[center]]';
michael@0 435 s += '[[!~~#include virtual="/cnn_adspaces/home/war_in_iraq/sponsor.88x31.ad"~~]]';
michael@0 436 s += ' [[/center]]';
michael@0 437 s += '-->';
michael@0 438 s += ' </div></td>';
michael@0 439 s += '<!-- /CNNRadio cell --> ';
michael@0 440 s += '<!-- center line --> ';
michael@0 441 s += ' <td bgcolor="#CCCCCC" width="1"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="1" hspace="0" vspace="0" border="0"></td>';
michael@0 442 s += '<!-- /center line --> ';
michael@0 443 s += '<!-- video cell --> ';
michael@0 444 s += ' <td width="227"><div class="cnn6pxPad">';
michael@0 445 s += '<!-- video box --> ';
michael@0 446 s += '<table width="215" border="0" cellpadding="0" cellspacing="0">';
michael@0 447 s += ' <tr valign="top">';
michael@0 448 s += ' <td width="144"><span class="cnnBigPrint" style="font-weight:bold;">VIDEO</span></td>';
michael@0 449 s += ' <td width="6"><img src="http://i.a.cnn.net/cnn/images/1.gif" alt="" width="6" height="1" hspace="0" vspace="0"></td>';
michael@0 450 s += ' <td width="65"><a href="/video/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/more.video.blue.gif" alt="MORE VIDEO" width="62" height="11" hspace="0" vspace="0" border="0"></a></td></tr>';
michael@0 451 s += ' <tr>';
michael@0 452 s += ' <td width="215" colspan="3"><img src="http://i.a.cnn.net/cnn/images/1.gif" alt="" width="1" height="2" hspace="0" vspace="0"></td></tr>';
michael@0 453 s += ' <tr valign="top">';
michael@0 454 s += ' <td><div class="cnnBodyText">';
michael@0 455 s += ' Soldier broke dozens of hearts over e-mail<br>';
michael@0 456 s += ' <img src="http://i.a.cnn.net/cnn/images/icons/premium.gif" align="middle" alt="premium content" width="9" height="11" hspace="0" vspace="1" border="0">&nbsp;<a href="javascript:LaunchVideo("/offbeat/2003/06/12/ms.casanova.col.ap.","300k");" class="cnnVideoLink">PLAY VIDEO</a></div>';
michael@0 457 s += ' </td>';
michael@0 458 s += '<td width="3"><img src="http://i.a.cnn.net/cnn/images/1.gif" alt="" width="3" height="1" hspace="0" vspace="0"></td> ';
michael@0 459 s += ' <td width="65" align="right">';
michael@0 460 s += ' <a href="javascript:LaunchVideo("/offbeat/2003/06/12/ms.casanova.col.ap.","300k");"><img src="http://i.cnn.net/cnn/video/offbeat/2003/06/12/ms.casanova.col.vs.kndu.jpg" alt="" width="65" height="49" border="0" vspace="2" hspace="0"></a>';
michael@0 461 s += ' </td></tr>';
michael@0 462 s += '</table>';
michael@0 463 s += ' <!-- /video box --> ';
michael@0 464 s += ' </div></td>';
michael@0 465 s += '<!-- /video cell --> ';
michael@0 466 s += '<!-- right-side line --> ';
michael@0 467 s += '<td bgcolor="#CCCCCC" width="1"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="1" hspace="0" vspace="0" border="0"></td>';
michael@0 468 s += '<!-- /right-side line --> ';
michael@0 469 s += ' </tr>';
michael@0 470 s += ' </table>';
michael@0 471 s += '';
michael@0 472 s += '<!-- bottom line -->';
michael@0 473 s += '<div><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_ccc.gif" alt="" width="344" height="1"></div>';
michael@0 474 s += '<!-- /bottom line -->';
michael@0 475 s += '<!-- =========== /CNN Radio/Video Box =========== -->';
michael@0 476 s += '';
michael@0 477 s += '<div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="10"></div>';
michael@0 478 s += '<div><img src="http://i.cnn.net/cnn/.element/img/1.0/main/px_c00.gif" alt="" width="344" height="2"></div>';
michael@0 479 s += '<table width="344" border="0" cellpadding="0" cellspacing="0">';
michael@0 480 s += ' <tr>';
michael@0 481 s += ' <td width="260" class="cnnTabbedBoxHeader" style="padding-left:0px;"><span class="cnnBigPrint"><b>ON THE SCENE</b></span></td>';
michael@0 482 s += ' <td width="84" class="cnnTabbedBoxTab" align="right" bgcolor="#336699" style="padding: 0px 3px;"><a href="/LAW/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/superlinks/law.gif" alt="more reports" height="11" border="0" hspace="2" vspace="2" align="right"></a></td>';
michael@0 483 s += ' </tr>';
michael@0 484 s += '</table>';
michael@0 485 s += '';
michael@0 486 s += '<table width="344" border="0" cellpadding="5" cellspacing="0">';
michael@0 487 s += ' <tr valign="top">';
michael@0 488 s += ' <td style="padding-left:0px;"> <b>Jeffrey Toobin:</b> "It takes guts" for Peterson defense to subpoena judge over wiretap issue.';
michael@0 489 s += '<a href="/2003/LAW/06/12/otsc.toobin/index.html">Full Story</a></td>';
michael@0 490 s += '';
michael@0 491 s += '<td width="65" align="right" style="padding-left:6px;"><a href="/2003/LAW/06/12/otsc.toobin/index.html"><img src="http://i.cnn.net/cnn/2003/LAW/06/12/otsc.toobin/tz.toobin.jpg" alt="image" width="65" height="49" border="0" hspace="0" vspace="0"></a></td>';
michael@0 492 s += ' </tr>';
michael@0 493 s += '</table>';
michael@0 494 s += '<div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="10"></div>';
michael@0 495 s += ' </td>';
michael@0 496 s += ' </tr>';
michael@0 497 s += ' <tr valign="bottom">';
michael@0 498 s += ' <td>';
michael@0 499 s += '<table width="344" border="0" cellpadding="0" cellspacing="0">';
michael@0 500 s += ' <tr>';
michael@0 501 s += ' <td width="267" nowrap style="color: #c00; padding-left: 6px"><span class="cnnBigPrint" style="vertical-align: top"><b>BUSINESS</b></span>';
michael@0 502 s += ' <a href="/money/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/at_cnnmoney.gif" alt=" at CNN/Money " width="100" height="15" border="0"></a></td>';
michael@0 503 s += ' <td width="77" align="right"><a href="/money/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/business.news.blue.gif" alt=" Business News " width="77" height="11" border="0"></a></td>';
michael@0 504 s += ' </tr>';
michael@0 505 s += '</table>';
michael@0 506 s += '';
michael@0 507 s += '<table width="344" bgcolor="#EEEEEE" border="0" cellpadding="0" cellspacing="0" style="border: solid 1px #ddd">';
michael@0 508 s += ' <tr valign="top">';
michael@0 509 s += ' <td>';
michael@0 510 s += ' <table width="100%" border="0" cellpadding="0" cellspacing="4">';
michael@0 511 s += ' <tr>';
michael@0 512 s += ' <td colspan="3"><span class="cnnMenuText"><b>STOCK/FUND QUOTES: </b></span></td>';
michael@0 513 s += ' </tr><form action="http://qs.money.cnn.com/tq/stockquote" method="get" style="margin: 0px;">';
michael@0 514 s += ' <tr>';
michael@0 515 s += ' <td><span class="cnnFinePrint">enter symbol</span></td>';
michael@0 516 s += ' <td><input type="text" name="symbols" size="7" maxlength="40" class="cnnMenuText" title="Enter stock/fund symbol or name to get a quote"></td>';
michael@0 517 s += ' <td><input type="submit" value="GET" class="cnnNavButton"></td>';
michael@0 518 s += ' </tr></form>';
michael@0 519 s += ' </table>';
michael@0 520 s += ' <table width="100%" border="0" cellpadding="0" cellspacing="4">';
michael@0 521 s += ' <tr valign="top">';
michael@0 522 s += ' <td><span class="cnnFinePrint">sponsored by:</span></td>';
michael@0 523 s += ' <td align="right"><!--<a href="/money/news/specials/rebuild_iraq/"><img src="http://i.a.cnn.net/cnn/2003/images/04/17/money.box.gif" ALT="" width="150" height="31" HSPACE="0" VSPACE="0" border="0" align="left"></a>--><a href="http://ar.atwola.com/link/93103306/aol"><img src="http://ar.atwola.com/image/93103306/aol" alt="Click Here" width="88" height="31" border="0" hspace="0" vspace="0"></a></td>';
michael@0 524 s += ' </tr>';
michael@0 525 s += ' </table>';
michael@0 526 s += ' </td>';
michael@0 527 s += ' <td class="cnnMainMarketBox"> <table width="100%" border="0" cellpadding="4" cellspacing="0" summary="Market data from CNNmoney">';
michael@0 528 s += ' <tr class="noBottomBorder">';
michael@0 529 s += ' <td colspan="5"><span class="cnnMainMarketCell"><span class="cnnMenuText"><b><a href="/money/markets/">MARKETS:</a></b></span> <!-- 16:30:15 -->';
michael@0 530 s += '';
michael@0 531 s += '4:30pm ET, 6/12</span></td>';
michael@0 532 s += ' </tr>';
michael@0 533 s += ' <tr class="noTopBorder">';
michael@0 534 s += ' <td><span class="cnnMainMarketCell"><a href="/money/markets/dow.html" title="Dow Jones Industrial Average">DJIA</a></span></td>';
michael@0 535 s += ' <td><img src="http://i.cnn.net/cnn/.element/img/1.0/main/arrow_up.gif" alt="" width="9" height="9"></td>';
michael@0 536 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">+13.30</span></td>';
michael@0 537 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">9196.50</span></td>';
michael@0 538 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">+ 0.14%</span></td>';
michael@0 539 s += '';
michael@0 540 s += ' </tr>';
michael@0 541 s += ' <tr>';
michael@0 542 s += ' <td><span class="cnnMainMarketCell"><a href="/money/markets/nasdaq.html" title="NASDAQ">NAS</a></span></td>';
michael@0 543 s += ' <td><img src="http://i.cnn.net/cnn/.element/img/1.0/main/arrow_up.gif" alt="" width="9" height="9"></td>';
michael@0 544 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">+ 7.60</span></td>';
michael@0 545 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">1653.62</span></td>';
michael@0 546 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">+ 0.46%</span></td>';
michael@0 547 s += '';
michael@0 548 s += ' </tr>';
michael@0 549 s += ' <tr class="noBottomBorder">';
michael@0 550 s += ' <td><span class="cnnMainMarketCell"><a href="/money/markets/sandp.html" title="S&amp;P 500">S&amp;P</a></span></td>';
michael@0 551 s += ' <td><img src="http://i.cnn.net/cnn/.element/img/1.0/main/arrow_up.gif" alt="" width="9" height="9"></td>';
michael@0 552 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">+ 1.03</span></td>';
michael@0 553 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">998.51</span></td>';
michael@0 554 s += ' <td align="right" nowrap><span class="cnnMainMarketCell">+ 0.10%</span></td>';
michael@0 555 s += '';
michael@0 556 s += ' </tr>';
michael@0 557 s += ' </table>';
michael@0 558 s += '</td>';
michael@0 559 s += ' </tr>';
michael@0 560 s += '</table>';
michael@0 561 s += '';
michael@0 562 s += '</td>';
michael@0 563 s += ' </tr>';
michael@0 564 s += ' <tr>';
michael@0 565 s += ' <td colspan="3"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="4"></td>';
michael@0 566 s += ' </tr>';
michael@0 567 s += ' <tr align="center" valign="bottom">';
michael@0 568 s += ' <td width="280" bgcolor="#EEEEEE"><a href="/linkto/ftn.nytimes1.html"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/ftn.280x32.ny.times.gif" width="255" height="32" alt="" border="0"></a></td>';
michael@0 569 s += '<td width="10"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="10" height="1"></td>';
michael@0 570 s += ' <td width="344" bgcolor="#EEEEEE"><a href="/linkto/ftn.bn3.html"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/ftn.345x32.breaking.news.gif" width="340" height="32" alt="" border="0"></a></td>';
michael@0 571 s += ' </tr>';
michael@0 572 s += '';
michael@0 573 s += '</table>';
michael@0 574 s += '';
michael@0 575 s += '';
michael@0 576 s += '<div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="10"></div>';
michael@0 577 s += '';
michael@0 578 s += '';
michael@0 579 s += '<table width="770" border="0" cellpadding="0" cellspacing="0">';
michael@0 580 s += ' <col width="10">';
michael@0 581 s += ' <col width="483" align="left" valign="top">';
michael@0 582 s += ' <col width="10">';
michael@0 583 s += ' <col width="267" align="left" valign="top">';
michael@0 584 s += ' <tr valign="top">';
michael@0 585 s += ' <td rowspan="2"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="10" height="1"></td>';
michael@0 586 s += ' <td valign="top">';
michael@0 587 s += ' <table border="0" cellpadding="0" cellspacing="0">';
michael@0 588 s += ' <tr valign="top">';
michael@0 589 s += ' <td width="238">';
michael@0 590 s += ' <div><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_c00.gif" alt="" width="238" height="2"></div>';
michael@0 591 s += '';
michael@0 592 s += '';
michael@0 593 s += '';
michael@0 594 s += '';
michael@0 595 s += '';
michael@0 596 s += '';
michael@0 597 s += ' <table width="238" border="0" cellpadding="0" cellspacing="0">';
michael@0 598 s += ' <tr>';
michael@0 599 s += ' <td width="132" class="cnnTabbedBoxHeader" style="padding-left:0px;"><span class="cnnBigPrint"><b>MORE REAL TV</b></span></td>';
michael@0 600 s += ' <td width="106" class="cnnTabbedBoxTab" align="right" bgcolor="#336699" style="padding: 0px 3px;"><a href="/SHOWBIZ"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/entertainment.news.gif" alt="More Entertainment" border="0" width="102" height="11" hspace="2" vspace="2" align="right"></a></td>';
michael@0 601 s += ' </tr>';
michael@0 602 s += ' </table>';
michael@0 603 s += ' <div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="238" height="5" vspace="0" hspace="0"></div>';
michael@0 604 s += ' <table width="238" border="0" cellpadding="0" cellspacing="0">';
michael@0 605 s += ' <tr valign="top">';
michael@0 606 s += ' <td><div class="cnn6pxTpad">';
michael@0 607 s += ' ';
michael@0 608 s += ' <a href="/2003/SHOWBIZ/06/11/eye.ent.voyeurs/index.html">Go ahead, follow me</a><br>';
michael@0 609 s += 'New reality series and the movie debut of "Idol" finalists';
michael@0 610 s += ' </div></td>';
michael@0 611 s += ' <td width="71" align="right"><a href="/2003/SHOWBIZ/06/11/eye.ent.voyeurs/index.html"><img src="http://i.a.cnn.net/cnn/2003/SHOWBIZ/06/11/eye.ent.voyeurs/tz.movies.gif" alt="Go ahead, follow me" width="65" height="49" border="0" vspace="6"></a></td>';
michael@0 612 s += ' </tr>';
michael@0 613 s += ' </table>';
michael@0 614 s += '';
michael@0 615 s += '';
michael@0 616 s += '';
michael@0 617 s += '';
michael@0 618 s += '';
michael@0 619 s += '';
michael@0 620 s += ' ';
michael@0 621 s += ' <div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="238" height="5" vspace="0" hspace="0"></div>';
michael@0 622 s += '<!--include virtual="/.element/ssi/video/section_teases/topvideos_include.txt"-->';
michael@0 623 s += ' </td>';
michael@0 624 s += ' <td><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="7" height="1"></td>';
michael@0 625 s += ' <td width="238">';
michael@0 626 s += ' <div><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_c00.gif" alt="" width="238" height="2"></div>';
michael@0 627 s += '';
michael@0 628 s += '';
michael@0 629 s += '';
michael@0 630 s += '';
michael@0 631 s += '';
michael@0 632 s += '';
michael@0 633 s += ' <table width="238" border="0" cellpadding="0" cellspacing="0">';
michael@0 634 s += ' <tr>';
michael@0 635 s += ' <td width="157" class="cnnTabbedBoxHeader" style="padding-left:0px;"><span class="cnnBigPrint"><b>GIFT IDEAS</b></span></td>';
michael@0 636 s += ' <td width="81" class="cnnTabbedBoxTab" align="right" bgcolor="#336699" style="padding: 0px 3px;"><a href="/money"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/superlinks/business.gif" alt="Business News" border="0" width="77" height="11" hspace="2" vspace="2" align="right"></a></td>';
michael@0 637 s += ' </tr>';
michael@0 638 s += ' </table>';
michael@0 639 s += ' <div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="238" height="5" vspace="0" hspace="0"></div>';
michael@0 640 s += ' <table width="238" border="0" cellpadding="0" cellspacing="0">';
michael@0 641 s += ' <tr valign="top">';
michael@0 642 s += ' <td><div class="cnn6pxTpad">';
michael@0 643 s += '';
michael@0 644 s += '';
michael@0 645 s += '<span class="cnnBodyText" style="font-weight:bold;">CNN/Money: </span> <a href="/money/2003/06/12/news/companies/fathers_day/index.htm?cnn=yes">Fathers Day</a><br>';
michael@0 646 s += 'Smaller is better --from digital cameras to iPod';
michael@0 647 s += ' </div></td>';
michael@0 648 s += ' <td width="71" align="right"><a href="/money/2003/06/12/news/companies/fathers_day/index.htm?cnn=yes"><img src="http://i.a.cnn.net/cnn/images/programming.boxes/tz.money.dads.day.watch.jpg" alt="Fathers Day" width="65" height="49" border="0" vspace="6"></a></td>';
michael@0 649 s += ' </tr>';
michael@0 650 s += ' </table>';
michael@0 651 s += ' </td>';
michael@0 652 s += ' </tr>';
michael@0 653 s += ' </table>';
michael@0 654 s += ' <div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="238" height="10" vspace="0" hspace="0"></div> ';
michael@0 655 s += '<table width="483" border="0" cellspacing="0" cellpadding="0">';
michael@0 656 s += ' <tr valign="top">';
michael@0 657 s += ' <td rowspan="9"><br></td>';
michael@0 658 s += ' <td width="238"><a href="/US/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/us.gif" alt="U.S. News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 659 s += '';
michael@0 660 s += ' ';
michael@0 661 s += '&#8226;&nbsp;<a href="/2003/US/South/06/11/miami.rapist/index.html">Miami police link 4 rapes to serial rapist</a><br>';
michael@0 662 s += '';
michael@0 663 s += ' ';
michael@0 664 s += '&#8226;&nbsp;<a href="/2003/LAW/06/12/mistaken.identity.ap/index.html">Woman mistaken for fugitive jailed</a><br>';
michael@0 665 s += '';
michael@0 666 s += ' ';
michael@0 667 s += '&#8226;&nbsp;<a href="/2003/US/Northeast/06/12/woman.impaled.ap/index.html">Pregnant woman impaled on mic stand</a><br>';
michael@0 668 s += ' </div></td>';
michael@0 669 s += ' <td rowspan="7" width="7"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="7" height="1"></td>';
michael@0 670 s += ' <td width="238"><a href="/WORLD/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/world.gif" alt="World News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 671 s += '';
michael@0 672 s += ' ';
michael@0 673 s += '&#8226;&nbsp;<a href="/2003/WORLD/europe/06/12/nato.bases/index.html">NATO reshapes for new era</a><br>';
michael@0 674 s += '';
michael@0 675 s += ' ';
michael@0 676 s += '&#8226;&nbsp;<a href="/2003/WORLD/africa/06/12/congo.democratic/index.html">U.N. reviews Bunia peace force</a><br>';
michael@0 677 s += '';
michael@0 678 s += '';
michael@0 679 s += '';
michael@0 680 s += '&#8226;&nbsp;<span class="cnnBodyText" style="font-weight:bold;color:#900;">TIME.com: </span><a href="/time/magazine/article/0,9171,1101030616-457361,00.html?CNN=yes" target="new">Saddams curtain trail</a><img src="http://i.cnn.net/cnn/.element/img/1.0/misc/icon.external.links.gif" alt="external link" width="20" height="13" vspace="1" hspace="4" border="0" align="top"><br>';
michael@0 681 s += ' </div></td>';
michael@0 682 s += ' </tr><tr valign="top">';
michael@0 683 s += ' <td width="238"><a href="/TECH/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/technology.gif" alt="Sci-Tech News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 684 s += '';
michael@0 685 s += ' ';
michael@0 686 s += '&#8226;&nbsp;<a href="/2003/TECH/ptech/06/11/bus2.ptech.dvd.maker/index.html">Another reason to throw out your VCR</a><br>';
michael@0 687 s += '';
michael@0 688 s += ' ';
michael@0 689 s += '&#8226;&nbsp;<a href="/2003/TECH/ptech/06/12/korea.samsung.reut/index.html">Flat screen TV prices dropping</a><br>';
michael@0 690 s += ' </div></td>';
michael@0 691 s += ' <td width="238"><a href="/SHOWBIZ/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/entertainment.gif" alt="Entertainment News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 692 s += '';
michael@0 693 s += ' ';
michael@0 694 s += '&#8226;&nbsp;<a href="/2003/SHOWBIZ/TV/06/12/cnn.obrien/index.html">CNN hires Soledad OBrien for "AM"</a><br>';
michael@0 695 s += '';
michael@0 696 s += ' ';
michael@0 697 s += '&#8226;&nbsp;<a href="/2003/SHOWBIZ/TV/06/11/batchelor.troubles.ap/index.html">Dating show star let go by law firm</a><br>';
michael@0 698 s += ' </div></td>';
michael@0 699 s += ' </tr><tr valign="top">';
michael@0 700 s += ' <td width="238"><a href="/ALLPOLITICS/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/politics.gif" alt="Politics News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 701 s += '';
michael@0 702 s += ' ';
michael@0 703 s += '&#8226;&nbsp;<a href="/2003/ALLPOLITICS/06/11/schwarzenegger.ap/index.html">Schwarzenegger on California politics</a><br>';
michael@0 704 s += '';
michael@0 705 s += ' ';
michael@0 706 s += '&#8226;&nbsp;<a href="/2003/ALLPOLITICS/06/12/tax.credit.ap/index.html">House approves extension on child tax credit</a><br>';
michael@0 707 s += ' </div></td>';
michael@0 708 s += ' <td width="238"><a href="/LAW/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/law.gif" alt="Law News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 709 s += '';
michael@0 710 s += ' ';
michael@0 711 s += '&#8226;&nbsp;<a href="/2003/LAW/06/12/plaintiff.advances.ap/index.html">Court bars cash advances to plaintiffs</a><br>';
michael@0 712 s += '';
michael@0 713 s += ' ';
michael@0 714 s += '&#8226;&nbsp;<a href="/2003/LAW/06/11/jackson.lawsuit.ap/index.html">Lawsuit against Jackson settled</a><br>';
michael@0 715 s += ' </div></td>';
michael@0 716 s += ' </tr><tr valign="top">';
michael@0 717 s += ' <td width="238"><a href="/HEALTH/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/health.gif" alt="Health News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 718 s += '';
michael@0 719 s += ' ';
michael@0 720 s += '&#8226;&nbsp;<a href="/2003/HEALTH/06/12/monkeypox.ap/index.html">Monkeypox spreading person-to-person?</a><br>';
michael@0 721 s += '';
michael@0 722 s += ' ';
michael@0 723 s += '&#8226;&nbsp;<a href="/2003/HEALTH/06/12/quick.xray.ap/index.html">A full body X-ray in 13 seconds</a><br>';
michael@0 724 s += ' </div></td>';
michael@0 725 s += ' <td width="238"><a href="/TECH/space/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/space.gif" alt="Space News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 726 s += '';
michael@0 727 s += ' ';
michael@0 728 s += '&#8226;&nbsp;<a href="/2003/TECH/science/06/12/hydrogen.ozone.ap/index.html">Hydrogen fuel may disturb ozone layer</a><br>';
michael@0 729 s += '';
michael@0 730 s += ' ';
michael@0 731 s += '&#8226;&nbsp;<a href="/2003/TECH/space/06/12/sprj.colu.bolts.ap/index.html">New threat found for shuttle launches</a><br>';
michael@0 732 s += ' </div></td>';
michael@0 733 s += ' </tr><tr valign="top">';
michael@0 734 s += ' <td width="238"><a href="/TRAVEL/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/travel.gif" alt="Travel News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 735 s += '';
michael@0 736 s += ' ';
michael@0 737 s += '&#8226;&nbsp;<a href="/2003/TRAVEL/DESTINATIONS/06/12/walk.across.america.ap/index.html">Walking America from coast to coast</a><br>';
michael@0 738 s += '';
michael@0 739 s += ' ';
michael@0 740 s += '&#8226;&nbsp;<a href="/2003/TRAVEL/06/11/bi.airlines.executives.reut/index.html">Airline execs not seeing sunny skies yet</a><br>';
michael@0 741 s += ' </div></td>';
michael@0 742 s += ' <td width="238"><a href="/EDUCATION/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/education.gif" alt="Education News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 743 s += '';
michael@0 744 s += ' ';
michael@0 745 s += '&#8226;&nbsp;<a href="/2003/EDUCATION/06/12/arabs.prom.ap/index.html">Arab students seek prom balance</a><br>';
michael@0 746 s += '';
michael@0 747 s += ' ';
michael@0 748 s += '&#8226;&nbsp;<a href="/2003/EDUCATION/06/11/school.fundraising.ap/index.html">Public schools turn to upscale fundraising</a><br>';
michael@0 749 s += ' </div></td>';
michael@0 750 s += ' </tr><tr valign="top">';
michael@0 751 s += ' <td width="238"><a href="/si/index.html?cnn=yes"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/sports.gif" alt="Sports News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 752 s += '';
michael@0 753 s += '&#8226;&nbsp;<a href="/cnnsi/golfonline/2003/us_open/news/2003/06/12/open_thursday_ap">Woods eyes third U.S. Open title</a><br>';
michael@0 754 s += '&#8226;&nbsp;<a href="/cnnsi/basketball/news/2003/06/12/jordan_ruling_ap">Judge denies Jordan&#039;s former lover $5M payoff</a><br>';
michael@0 755 s += ' </div></td>';
michael@0 756 s += ' <td width="238"><a href="/money/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/business.gif" alt="Business News: " width="238" height="15" border="0"></a><br><div class="cnnMainSections">';
michael@0 757 s += '&#8226;&nbsp;<a href="/money/2003/06/12/pf/saving/duppies/index.htm">Here come the "Duppies"</a><br>';
michael@0 758 s += '&#8226;&nbsp;<a href="/money/2003/06/12/technology/oracle/index.htm">Oracle beats estimates</a><br>';
michael@0 759 s += ' </div></td>';
michael@0 760 s += ' </tr>';
michael@0 761 s += '</table>';
michael@0 762 s += ' </td>';
michael@0 763 s += ' <td><img src="http://i.cnn.net/cnn/images/1.gif" width="10" hspace="0" vspace="0" alt=""></td>';
michael@0 764 s += ' <td valign="top">';
michael@0 765 s += ' <div><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_c00.gif" alt="" width="267" height="2"></div>';
michael@0 766 s += ' ';
michael@0 767 s += '<table width="267" border="0" cellpadding="0" cellspacing="0">';
michael@0 768 s += ' <tr>';
michael@0 769 s += ' <td width="173" bgcolor="#003366"><div class="cnnBlueBoxHeader"><span class="cnnBigPrint"><b>WATCH CNN TV</b></span></div></td>';
michael@0 770 s += ' <td width="25" class="cnnBlueBoxHeader" align="right"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/misc/diagonal.gif" width="25" height="19" alt=""></td>';
michael@0 771 s += ' <td width="69" class="cnnBlueBoxTab" align="right" bgcolor="#336699"><a href="/CNN/Programs/"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/tv.schedule.gif" alt="On CNN TV" border="0" width="65" height="11" hspace="2" vspace="2" align="right"></a></td>';
michael@0 772 s += ' </tr>';
michael@0 773 s += '</table>';
michael@0 774 s += '<table width="267" bgcolor="#EEEEEE" border="0" cellpadding="4" cellspacing="0">';
michael@0 775 s += ' <tr valign="top">';
michael@0 776 s += ' <td><a href="/CNN/Programs/american.morning/"><img src="http://i.cnn.net/cnn/CNN/Programs/includes/showbox/images/2003/05/tz.hemmer.jpg" alt="American Morning, 7 a.m. ET" width="65" height="49" border="0" align="right"></a><a href="/CNN/Programs/american.morning/"><b>American Morning (7 a.m. ET):</b></a> Tomorrow, singer Carnie Wilson talks about her new book, "Im Still Hungry."';
michael@0 777 s += ' </td>';
michael@0 778 s += ' </tr>';
michael@0 779 s += '</table>';
michael@0 780 s += '';
michael@0 781 s += '<!--';
michael@0 782 s += '[[table width="267" border="0" cellpadding="0" cellspacing="0"]]';
michael@0 783 s += '[[tr]][[td width="173" bgcolor="#003366"]][[div class="cnnBlueBoxHeader"]][[span class="cnnBigPrint"]][[b]]WATCH CNN TV[[/b]][[/span]][[/div]][[/td]][[td width="25" class="cnnBlueBoxHeader" align="right"]][[img src="http://i.a.cnn.net/cnn/.element/img/1.0/misc/diagonal.gif" width="25" height="19" alt=""]][[/td]][[td width="69" class="cnnBlueBoxTab" align="right" bgcolor="#336699"]][[a href="/CNN/Programs/"]][[img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/tv.schedule.gif" alt="On CNN TV" border="0" width="65" height="11" hspace="2" vspace="2" align="right"]][[/a]][[/td]][[/tr]][[/table]][[table width="267" bgcolor="#EEEEEE" border="0" cellpadding="4" cellspacing="0"]][[tr valign="top"]][[td]]';
michael@0 784 s += '[[img src="http://i.cnn.net/cnn/2003/images/05/31/tz.bw.jpg" alt="" width="65" height="49" border="0" align="right"]]';
michael@0 785 s += ' ';
michael@0 786 s += '[[b]] CNN Presents: The Hunt for Eric Robert Rudolph (8 p.m. ET)[[/b]][[br]]Latest on his capture.';
michael@0 787 s += ' [[/td]]';
michael@0 788 s += ' [[/tr]]';
michael@0 789 s += ' [[/table]]';
michael@0 790 s += '-->';
michael@0 791 s += '';
michael@0 792 s += ' <div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="10"></div> ';
michael@0 793 s += '';
michael@0 794 s += '';
michael@0 795 s += '';
michael@0 796 s += '';
michael@0 797 s += '';
michael@0 798 s += '';
michael@0 799 s += ' <div><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_c00.gif" alt="" width="267" height="2"></div>';
michael@0 800 s += ' <table width="267" border="0" cellpadding="0" cellspacing="0">';
michael@0 801 s += ' <tr>';
michael@0 802 s += ' <td width="184" bgcolor="#003366"><div class="cnnBlueBoxHeader"><span class="cnnBigPrint"><b>ANALYSIS</b></span></div></td>';
michael@0 803 s += ' <td width="25" class="cnnBlueBoxHeader" align="right"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/misc/diagonal.gif" width="25" height="19" alt=""></td>';
michael@0 804 s += ' <td width="58" class="cnnBlueBoxTab" align="right" bgcolor="#336699"><a href="/US"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/superlinks/us.gif" alt="U.S. News" border="0" width="54" height="11" hspace="2" vspace="2" align="right"></a></td>';
michael@0 805 s += ' </tr>';
michael@0 806 s += ' </table>';
michael@0 807 s += ' <table width="267" bgcolor="#EEEEEE" border="0" cellpadding="4" cellspacing="0">';
michael@0 808 s += ' <tr valign="top">';
michael@0 809 s += ' <td>';
michael@0 810 s += '<a href="/2003/US/06/12/nyt.safire/index.html"><img src="http://i.a.cnn.net/cnn/2003/US/06/12/nyt.safire/tz.stewart.jpg" alt="Fight It, Martha" width="65" height="49" border="0" align="right"></a>';
michael@0 811 s += '';
michael@0 812 s += '';
michael@0 813 s += '<span class="cnnBodyText" style="font-weight:bold;color:#000;">NYTimes: </span> <a href="/2003/US/06/12/nyt.safire/index.html">Fight It, Martha</a><br>';
michael@0 814 s += 'William Safire: I hope Martha Stewart beats this bum rap';
michael@0 815 s += '';
michael@0 816 s += '';
michael@0 817 s += '';
michael@0 818 s += '';
michael@0 819 s += ' </td>';
michael@0 820 s += ' </tr>';
michael@0 821 s += ' </table>';
michael@0 822 s += ' <div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="10"></div>';
michael@0 823 s += ' <div><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_c00.gif" alt="" width="267" height="2"></div>';
michael@0 824 s += ' <table width="267" border="0" cellpadding="0" cellspacing="0">';
michael@0 825 s += ' <tr>';
michael@0 826 s += ' <td width="164" bgcolor="#003366"><div class="cnnBlueBoxHeader"><span class="cnnBigPrint"><b>OFFBEAT</b></span></div></td>';
michael@0 827 s += ' <td width="25" class="cnnBlueBoxHeader" align="right"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/misc/diagonal.gif" width="25" height="19" alt=""></td>';
michael@0 828 s += ' <td width="78" class="cnnBlueBoxTab" align="right" bgcolor="#336699"><a href="/offbeat"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/superlinks/offbeat.gif" alt="more offbeat" width="74" height="11" border="0" hspace="2" vspace="2" align="right"></a></td>';
michael@0 829 s += ' </tr>';
michael@0 830 s += ' </table>';
michael@0 831 s += ' <table width="267" bgcolor="#DDDDDD" border="0" cellpadding="4" cellspacing="0">';
michael@0 832 s += ' <tr valign="top">';
michael@0 833 s += ' <td>';
michael@0 834 s += '<a href="/2003/HEALTH/06/12/offbeat.china.sperm.ap/index.html"><img src="http://i.a.cnn.net/cnn/2003/HEALTH/06/12/offbeat.china.sperm.ap/tz.china.sperm.jpg" alt="Waiting list" width="65" height="49" border="0" align="right"></a>';
michael@0 835 s += ' ';
michael@0 836 s += ' <a href="/2003/HEALTH/06/12/offbeat.china.sperm.ap/index.html">Waiting list</a><br>';
michael@0 837 s += 'Chinas "smart sperm" bank needs donors';
michael@0 838 s += ' </td>';
michael@0 839 s += ' </tr>';
michael@0 840 s += ' </table>';
michael@0 841 s += ' <div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="10"></div>';
michael@0 842 s += '';
michael@0 843 s += ' <table width="267" bgcolor="#999999" border="0" cellpadding="0" cellspacing="0">';
michael@0 844 s += ' <tr>';
michael@0 845 s += ' <td>';
michael@0 846 s += ' <table width="100%" border="0" cellpadding="4" cellspacing="1">';
michael@0 847 s += ' <tr>';
michael@0 848 s += ' <td bgcolor="#EEEEEE" class="cnnMainWeatherBox"><a name="weatherBox"></a>';
michael@0 849 s += '';
michael@0 850 s += '';
michael@0 851 s += '';
michael@0 852 s += '';
michael@0 853 s += '';
michael@0 854 s += '';
michael@0 855 s += '<table width="257" border="0" cellpadding="1" cellspacing="0">';
michael@0 856 s += '<form method="get" action="http://weather.cnn.com/weather/search" style="margin: 0px">';
michael@0 857 s += '<input type="hidden" name="mode" value="hplwp">';
michael@0 858 s += ' <tr>';
michael@0 859 s += ' <td bgcolor="#FFFFFF"><table width="255" bgcolor="#EAEFF4" border="0" cellpadding="4" cellspacing="0">';
michael@0 860 s += ' <tr>';
michael@0 861 s += ' <td colspan="2" class="cnnWEATHERrow">&nbsp;<span class="cnnBigPrint">WEATHER</span></td>';
michael@0 862 s += ' </tr>';
michael@0 863 s += ' <tr>';
michael@0 864 s += ' <td colspan="2" class="cnnBodyText">Get your hometown weather on the home page! <b>Enter city name or U.S. Zip Code:</b></td>';
michael@0 865 s += ' </tr>';
michael@0 866 s += ' <tr>';
michael@0 867 s += ' <td><input class="cnnFormText" type="text" size="12" name="wsearch" value="" style="width:100px;"></td>';
michael@0 868 s += ' <td><input class="cnnNavButton" type="submit" value="PERSONALIZE"></td>';
michael@0 869 s += ' </tr>';
michael@0 870 s += ' <tr>';
michael@0 871 s += ' <td class="cnnBodyText" colspan="2">Or <a href="javascript:CNN_openPopup("http://weather.cnn.com/weather/select.popup/content2.jsp?mode=hplwp", "weather", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=260,height=250")"><b>select location from a list</b></a></td>';
michael@0 872 s += ' </tr>';
michael@0 873 s += ' </table></td>';
michael@0 874 s += ' </tr>';
michael@0 875 s += '</form>';
michael@0 876 s += '</table>';
michael@0 877 s += '';
michael@0 878 s += '';
michael@0 879 s += '';
michael@0 880 s += ' </td>';
michael@0 881 s += ' </tr>';
michael@0 882 s += ' <tr>';
michael@0 883 s += ' <td bgcolor="#EEEEEE">';
michael@0 884 s += ' <table width="100%" border="0" cellpadding="0" cellspacing="2">';
michael@0 885 s += ' <tr>';
michael@0 886 s += ' <td><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/quickvote.gif" alt="Quick Vote" width="107" height="24" border="0"></td>';
michael@0 887 s += ' <td width="88" align="right"><!-- ad home/quickvote/sponsor.88x31 -->';
michael@0 888 s += '<!-- ad commented while aol investigates 3/31/03 5:40 a.m. lk -->';
michael@0 889 s += '<a href="http://ar.atwola.com/link/93101912/aol"><img src="http://ar.atwola.com/image/93101912/aol" alt="Click Here" width="88" height="31" border="0" hspace="0" vspace="0"></a>';
michael@0 890 s += '</td>';
michael@0 891 s += ' </tr>';
michael@0 892 s += ' </table>';
michael@0 893 s += '<table width="100%" cellspacing="0" cellpadding="1" border="0"><form target="popuppoll" method="post" action="http://polls.cnn.com/poll">';
michael@0 894 s += '<INPUT TYPE=HIDDEN NAME="poll_id" VALUE="3966">';
michael@0 895 s += '<tr><td colspan="2" align="left"><span class="cnnBodyText">Should an international peacekeeping force be sent to the Mideast?<br></span></td></tr>';
michael@0 896 s += '<tr valign="top">';
michael@0 897 s += '<td><span class="cnnBodyText">Yes</span>';
michael@0 898 s += '</td><td align="right"><input value="1" type="radio" name="question_1"></td></tr>';
michael@0 899 s += '<tr valign="top">';
michael@0 900 s += '<td><span class="cnnBodyText">No</span>';
michael@0 901 s += '</td><td align="right"><input value="2" type="radio" name="question_1"></td></tr>';
michael@0 902 s += '<!-- /end Question 1 -->';
michael@0 903 s += '<tr>';
michael@0 904 s += '<td colspan="2">';
michael@0 905 s += '<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td><span class="cnnInterfaceLink"><nobr><a href="javascript:CNN_openPopup("/POLLSERVER/results/3966.html","popuppoll","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=510,height=400")">VIEW RESULTS</a></nobr></span></td>';
michael@0 906 s += '<td align="right"><input class="cnnFormButton" onclick="CNN_openPopup("","popuppoll","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=510,height=400")" value="VOTE" type="SUBMIT"></td></tr></table></td></tr>';
michael@0 907 s += '</form></table>';
michael@0 908 s += '';
michael@0 909 s += ' </td>';
michael@0 910 s += ' </tr>';
michael@0 911 s += '</table>';
michael@0 912 s += '';
michael@0 913 s += ' </td>';
michael@0 914 s += ' </tr>';
michael@0 915 s += ' </table>';
michael@0 916 s += ' <!-- /right --></td>';
michael@0 917 s += ' </tr>';
michael@0 918 s += ' <tr>';
michael@0 919 s += ' <td colspan="3" valign="bottom"> <img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/px_ccc.gif" alt="" width="483" height="1"> </td>';
michael@0 920 s += ' </tr>';
michael@0 921 s += '</table>';
michael@0 922 s += '<table width="770" border="0" cellpadding="0" cellspacing="0" summary="Links to stories from CNN partners">';
michael@0 923 s += ' <col width="10">';
michael@0 924 s += ' <col width="250" align="left" valign="top">';
michael@0 925 s += ' <col width="5">';
michael@0 926 s += ' <col width="250" align="left" valign="top">';
michael@0 927 s += ' <col width="5">';
michael@0 928 s += ' <col width="250" align="left" valign="top">';
michael@0 929 s += ' <tr><td colspan="6"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="2"></td></tr>';
michael@0 930 s += ' <tr valign="top">';
michael@0 931 s += ' <td rowspan="6" width="10"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="10" height="1"></td>';
michael@0 932 s += ' <td colspan="3"><span class="cnnMenuText" style="font-size: 12px"><b style="color: #c00">From our Partners</b></span>';
michael@0 933 s += ' <img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/icon_external.gif" alt=" External site icon " width="20" height="13" border="0" align="middle"></td>';
michael@0 934 s += ' <td colspan="2"></td>';
michael@0 935 s += ' </tr>';
michael@0 936 s += ' <tr><td colspan="5"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="2"></td></tr>';
michael@0 937 s += ' <tr><td colspan="5" bgcolor="#CCCCCC"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="1"></td></tr>';
michael@0 938 s += ' <tr><td colspan="5"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="2"></td></tr>';
michael@0 939 s += ' <tr valign="top">';
michael@0 940 s += ' <td class="cnnMainSections" width="250">';
michael@0 941 s += '<a href="/time/" target="new"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/partner_time.gif" alt="Time: " width="70" height="17" border="0"></a><br><div style="margin-top: 4px"> &#8226;&nbsp;<a target="new" href="/time/magazine/article/0,9171,1101030616-457387,00.html?CNN=yes">Where the Jobs Are</a><br> &#8226;&nbsp;<a target="new" href="/time/magazine/article/0,9171,1101030616-457373,00.html?CNN=yes">Of Dogs and Men</a><br> &#8226;&nbsp;<a target="new" href="/time/photoessays/gunmen/?CNN=yes">Photo Essay: Fighting the Peace</a><br></div><table border="0"><tr><td><img height="1" width="1" alt="" src="http://i.cnn.net/cnn/images/1.gif"/></td></tr><tr bgcolor="#dddddd"><td>&nbsp;&nbsp;<a target="new" href="/linkto/time.main.html">Subscribe to TIME</a>&nbsp;&nbsp;</td></tr></table> </td>';
michael@0 942 s += ' <td width="5"><br></td>';
michael@0 943 s += ' <td class="cnnMainSections" width="250">';
michael@0 944 s += '<a href="/cnnsi/index.html?cnn=yes"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/partner_si.gif" alt="CNNsi.com: " width="138" height="17" border="0"></a><br><div style="margin-top: 4px">';
michael@0 945 s += '&#8226;&nbsp;Marty Burns: <a target="new" href="/cnnsi/inside_game/marty_burns/news/2003/06/11/burns_game4/">Nets pull out all stops</a><br>';
michael@0 946 s += '&#8226;&nbsp;Michael Farber: <a target="new" href="/cnnsi/inside_game/michael_farber/news/2003/06/11/farber_wrapup/">Sens look good for "04</a><br>';
michael@0 947 s += '&#8226;&nbsp;Tim Layden: <a target="new" href="/cnnsi/inside_game/tim_layden/news/2003/06/11/layden_neuheisel/">NFL or bust for Neuheisel</a><br>';
michael@0 948 s += '</div>';
michael@0 949 s += '<table border="0"><tr><td><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="1"></td></tr><tr bgcolor="#dddddd"><td>&nbsp;&nbsp;<a href="http://subs.timeinc.net/CampaignHandler/si_cnnsi?source_id=19">Subscribe to Sports Illustrated</a>&nbsp;&nbsp;</td></tr></table>';
michael@0 950 s += ' </td>';
michael@0 951 s += ' <td width="5"><br></td>';
michael@0 952 s += ' <td class="cnnMainSections" width="250">';
michael@0 953 s += '<a href="/linkto/nyt/main.banner.html" target="new"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/partners_nyt.gif" alt="New York Times: " width="105" height="17" border="0"></a><br><div style="margin-top: 4px"> &#8226;&nbsp;<a target="new" href="/linkto/nyt/story/1.0612.html">U.S. Widens Checks at Foreign Ports</a><br> &#8226;&nbsp;<a target="new" href="/linkto/nyt/story/2.0612.html">Rumsfeld: Iran Developing Nuclear Arms</a><br> &#8226;&nbsp;<a target="new" href="/linkto/nyt/story/3.0612.html">Vandalism, "Improvements" Mar Great Wall</a><br></div><table border="0"><tr><td><img height="1" width="1" alt="" src="http://i.cnn.net/cnn/images/1.gif"/></td></tr><tr bgcolor="#dddddd"><td>&nbsp;&nbsp;<a target="new" href="/linkto/nyt.main.html">Get 50% OFF the NY Times</a>&nbsp;&nbsp;</td></tr></table> </td>';
michael@0 954 s += ' </tr>';
michael@0 955 s += '';
michael@0 956 s += '</table>';
michael@0 957 s += '<div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="2"></div>';
michael@0 958 s += '';
michael@0 959 s += '<table width="770" border="0" cellpadding="0" cellspacing="0">';
michael@0 960 s += ' <tr>';
michael@0 961 s += ' <td width="10"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="10" height="10"></td>';
michael@0 962 s += ' <td width="760">';
michael@0 963 s += '<!-- floor -->';
michael@0 964 s += '';
michael@0 965 s += '<table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td bgcolor="#999999"><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="1"></td></tr></table>';
michael@0 966 s += '';
michael@0 967 s += '<div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="1"></div>';
michael@0 968 s += '';
michael@0 969 s += '<table width="100%" bgcolor="#DEDEDE" border="0" cellpadding="3" cellspacing="0">';
michael@0 970 s += ' <tr> ';
michael@0 971 s += ' <td><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="5" height="5"></td>';
michael@0 972 s += ' <td><a href="http://edition.cnn.com/" class="cnnFormTextB" onClick="clickEdLink()" style="color:#000;">International Edition</a></td>';
michael@0 973 s += '<form>';
michael@0 974 s += ' <td><select title="CNN.com is available in different languages" class="cnnMenuText" name="languages" size="1" style="font-weight: bold; vertical-align: middle" onChange="if (this.options[selectedIndex].value != "") location.href=this.options[selectedIndex].value">';
michael@0 975 s += ' <option value="" disabled selected>Languages</option>';
michael@0 976 s += ' <option value="" disabled>---------</option>';
michael@0 977 s += ' <option value="/cnnes/">Spanish</option>';
michael@0 978 s += ' <option value="http://cnn.de/">German</option>';
michael@0 979 s += ' <option value="http://cnnitalia.it/">Italian</option>';
michael@0 980 s += ' <option value="http://www.joins.com/cnn/">Korean</option>';
michael@0 981 s += ' <option value="http://arabic.cnn.com/">Arabic</option>';
michael@0 982 s += ' <option value="http://www.CNN.co.jp/">Japanese</option>';
michael@0 983 s += ' </select></td>';
michael@0 984 s += '</form>';
michael@0 985 s += ' <td><a href="/CNN/Programs/" class="cnnFormTextB" style="color:#000;">CNN TV</a></td>';
michael@0 986 s += ' <td><a href="/CNNI/" class="cnnFormTextB" style="color:#000;">CNN International</a></td>';
michael@0 987 s += ' <td><a href="/HLN/" class="cnnFormTextB" style="color:#000;">Headline News</a></td>';
michael@0 988 s += ' <td><a href="/TRANSCRIPTS/" class="cnnFormTextB" style="color:#000;">Transcripts</a></td>';
michael@0 989 s += ' <td><a href="/services/preferences/" title="Customize your CNN.com experience" class="cnnFormTextB" style="color:#000;">Preferences</a></td>';
michael@0 990 s += ' <td><a href="/INDEX/about.us/" class="cnnFormTextB" style="color:#000;">About CNN.com</a></td>';
michael@0 991 s += ' </tr>';
michael@0 992 s += '</table>';
michael@0 993 s += '';
michael@0 994 s += '<div><img src="http://i.cnn.net/cnn/images/1.gif" alt="" width="1" height="1"></div>';
michael@0 995 s += '';
michael@0 996 s += '<table width="100%" bgcolor="#EFEFEF" border="0" cellpadding="4" cellspacing="0">';
michael@0 997 s += ' <tr valign="top"> ';
michael@0 998 s += ' <td style="padding-left:10px"><div class="cnnSectCopyright">';
michael@0 999 s += '<b>&copy; 2003 Cable News Network LP, LLLP.</b><br>';
michael@0 1000 s += 'An AOL Time Warner Company. All Rights Reserved.<br>';
michael@0 1001 s += '<a href="/interactive_legal.html">Terms</a> under which this service is provided to you.<br>';
michael@0 1002 s += 'Read our <a href="/privacy.html">privacy guidelines</a>. <a href="/feedback/">Contact us</a>.';
michael@0 1003 s += ' </div></td>';
michael@0 1004 s += ' <td align="right"><table border="0" cellpadding="4" cellspacing="0">';
michael@0 1005 s += ' <tr> ';
michael@0 1006 s += ' <td rowspan="2" align="middle"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/sect/SEARCH/dotted.line.gif" alt="" width="7" height="46"></td>';
michael@0 1007 s += ' <td><img src="http://i.a.cnn.net/cnn/.element/img/1.0/misc/icon.external.links.gif" alt="external link" width="20" height="13"></td>';
michael@0 1008 s += ' <td><div class="cnnSectExtSites">All external sites will open in a new browser.<br>';
michael@0 1009 s += ' CNN.com does not endorse external sites.</div></td>';
michael@0 1010 s += ' <td rowspan="2" align="middle"><img src="http://i.a.cnn.net/cnn/.element/img/1.0/sect/SEARCH/dotted.line.gif" alt="" width="7" height="46"></td>';
michael@0 1011 s += ' <td rowspan="2"><!-- home/powered_by/sponsor.88x31 -->';
michael@0 1012 s += '<script language="JavaScript1.1">';
michael@0 1013 s += '<!--';
michael@0 1014 s += 'adSetTarget("_top");';
michael@0 1015 s += 'htmlAdWH( (new Array(93103308,93103308,93103308,93103308))[document.adoffset||0] , 88, 31);';
michael@0 1016 s += '//-->';
michael@0 1017 s += '</script><noscript><a href="http://ar.atwola.com/link/93103308/aol" target="_top"><img src="http://ar.atwola.com/image/93103308/aol" alt="Click here for our advertiser" width="88" height="31" border="0"></a></noscript>';
michael@0 1018 s += '</td>';
michael@0 1019 s += ' </tr>';
michael@0 1020 s += ' <tr valign="top"> ';
michael@0 1021 s += ' <td><img src="http://i.a.cnn.net/cnn/.element/img/1.0/main/icon_premium.gif" alt=" Premium content icon " width="9" height="11"></td>';
michael@0 1022 s += ' <td><span class="cnnSectExtSites">Denotes premium content.</span></td>';
michael@0 1023 s += ' </tr>';
michael@0 1024 s += ' </table></td>';
michael@0 1025 s += ' </tr>';
michael@0 1026 s += '</table>';
michael@0 1027 s += '';
michael@0 1028 s += '<!-- /floor --></td>';
michael@0 1029 s += ' </tr>';
michael@0 1030 s += '</table>';
michael@0 1031 s += '';
michael@0 1032 s += '';
michael@0 1033 s += '';
michael@0 1034 s += '<!-- popunder ad generic/popunder_launch.720x300 -->';
michael@0 1035 s += '<script language="JavaScript1.1" type="text/javascript">';
michael@0 1036 s += '<!--';
michael@0 1037 s += 'if (document.adPopupFile) {';
michael@0 1038 s += ' if (document.adPopupInterval == null) {';
michael@0 1039 s += ' document.adPopupInterval = "0";';
michael@0 1040 s += ' }';
michael@0 1041 s += ' if (document.adPopunderInterval == null) {';
michael@0 1042 s += ' document.adPopunderInterval = document.adPopupInterval;';
michael@0 1043 s += ' }';
michael@0 1044 s += ' if (document.adPopupDomain != null) {';
michael@0 1045 s += ' adSetPopDm(document.adPopupDomain);';
michael@0 1046 s += ' }';
michael@0 1047 s += ' adSetPopupWH("93162673", "720", "300", document.adPopupFile, document.adPopunderInterval, 20, 50, -1);';
michael@0 1048 s += '}';
michael@0 1049 s += '// -->';
michael@0 1050 s += '</script>';
michael@0 1051 s += ' ';
michael@0 1052 s += '<!-- home/bottom.eyeblaster -->';
michael@0 1053 s += '<script language="JavaScript1.1" type="text/javascript">';
michael@0 1054 s += '<!--';
michael@0 1055 s += 'var MacPPC = (navigator.platform == "MacPPC") ? true : false;';
michael@0 1056 s += 'if (!MacPPC) {';
michael@0 1057 s += 'adSetType("J");';
michael@0 1058 s += 'htmlAdWH( (new Array(93137910,93137910,93137910,93137910))[document.adoffset||0], 101, 1);';
michael@0 1059 s += 'adSetType("");';
michael@0 1060 s += '}';
michael@0 1061 s += '// -->';
michael@0 1062 s += '</script>';
michael@0 1063 s += '';
michael@0 1064 s += '<script language="JavaScript1.1" src="http://ar.atwola.com/file/adsEnd.js"></script>';
michael@0 1065 s += '';
michael@0 1066 s += '<img src="/cookie.crumb" alt="" width="1" height="1">';
michael@0 1067 s += '<!--include virtual="/virtual/2002/main/survey.html"-->';
michael@0 1068 s += '</body>';
michael@0 1069 s += '</html>';
michael@0 1070
michael@0 1071 return s;
michael@0 1072 }

mercurial