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