openai/openai-python

Public

mirrored fromhttps://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.14.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

examples/embeddings/Recommendation.ipynb

8754lines · modecode

1{
2 "cells": [
3 {
4 "cell_type": "markdown",
5 "metadata": {},
6 "source": [
7 "# Recommendation using embeddings and nearest neighbor search\n",
8 "\n",
9 "Recommendations are widespread across the web.\n",
10 "\n",
11 "- 'Bought that item? Try these similar items.'\n",
12 "- 'Enjoy that book? Try these similar titles.'\n",
13 "- 'Not the help page you were looking for? Try these similar pages.'\n",
14 "\n",
15 "This notebook demonstrates how to use embeddings to find similar items to recommend. In particular, we use [AG's corpus of news articles](http://groups.di.unipi.it/~gulli/AG_corpus_of_news_articles.html) as our dataset.\n",
16 "\n",
17 "Our model will answer the question: given an article, what are the articles most similar to it?"
18 ]
19 },
20 {
21 "cell_type": "markdown",
22 "metadata": {},
23 "source": [
24 "### 1. Imports\n",
25 "\n",
26 "First, let's import the packages and functions we'll need for later. If you don't have these, you'll need to install them. You can install them via your terminal by running `pip install {package_name}`, e.g. `pip install pandas`."
27 ]
28 },
29 {
30 "cell_type": "code",
31 "execution_count": 1,
32 "metadata": {},
33 "outputs": [],
34 "source": [
35 "# imports\n",
36 "from typing import List\n",
37 "\n",
38 "import pandas as pd\n",
39 "import pickle\n",
40 "\n",
41 "from openai.embeddings_utils import (\n",
42 " get_embedding,\n",
43 " distances_from_embeddings,\n",
44 " tsne_components_from_embeddings,\n",
45 " chart_from_components,\n",
46 " indices_of_nearest_neighbors_from_distances,\n",
47 ")"
48 ]
49 },
50 {
51 "cell_type": "markdown",
52 "metadata": {},
53 "source": [
54 "### 2. Load data\n",
55 "\n",
56 "Next, let's load the AG news data and see what it looks like."
57 ]
58 },
59 {
60 "cell_type": "code",
61 "execution_count": 2,
62 "metadata": {},
63 "outputs": [
64 {
65 "data": {
66 "text/html": [
67 "<div>\n",
68 "<style scoped>\n",
69 " .dataframe tbody tr th:only-of-type {\n",
70 " vertical-align: middle;\n",
71 " }\n",
72 "\n",
73 " .dataframe tbody tr th {\n",
74 " vertical-align: top;\n",
75 " }\n",
76 "\n",
77 " .dataframe thead th {\n",
78 " text-align: right;\n",
79 " }\n",
80 "</style>\n",
81 "<table border=\"1\" class=\"dataframe\">\n",
82 " <thead>\n",
83 " <tr style=\"text-align: right;\">\n",
84 " <th></th>\n",
85 " <th>title</th>\n",
86 " <th>description</th>\n",
87 " <th>label_int</th>\n",
88 " <th>label</th>\n",
89 " </tr>\n",
90 " </thead>\n",
91 " <tbody>\n",
92 " <tr>\n",
93 " <th>0</th>\n",
94 " <td>World Briefings</td>\n",
95 " <td>BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime M...</td>\n",
96 " <td>1</td>\n",
97 " <td>World</td>\n",
98 " </tr>\n",
99 " <tr>\n",
100 " <th>1</th>\n",
101 " <td>Nvidia Puts a Firewall on a Motherboard (PC Wo...</td>\n",
102 " <td>PC World - Upcoming chip set will include buil...</td>\n",
103 " <td>4</td>\n",
104 " <td>Sci/Tech</td>\n",
105 " </tr>\n",
106 " <tr>\n",
107 " <th>2</th>\n",
108 " <td>Olympic joy in Greek, Chinese press</td>\n",
109 " <td>Newspapers in Greece reflect a mixture of exhi...</td>\n",
110 " <td>2</td>\n",
111 " <td>Sports</td>\n",
112 " </tr>\n",
113 " <tr>\n",
114 " <th>3</th>\n",
115 " <td>U2 Can iPod with Pictures</td>\n",
116 " <td>SAN JOSE, Calif. -- Apple Computer (Quote, Cha...</td>\n",
117 " <td>4</td>\n",
118 " <td>Sci/Tech</td>\n",
119 " </tr>\n",
120 " <tr>\n",
121 " <th>4</th>\n",
122 " <td>The Dream Factory</td>\n",
123 " <td>Any product, any shape, any size -- manufactur...</td>\n",
124 " <td>4</td>\n",
125 " <td>Sci/Tech</td>\n",
126 " </tr>\n",
127 " </tbody>\n",
128 "</table>\n",
129 "</div>"
130 ],
131 "text/plain": [
132 " title \\\n",
133 "0 World Briefings \n",
134 "1 Nvidia Puts a Firewall on a Motherboard (PC Wo... \n",
135 "2 Olympic joy in Greek, Chinese press \n",
136 "3 U2 Can iPod with Pictures \n",
137 "4 The Dream Factory \n",
138 "\n",
139 " description label_int label \n",
140 "0 BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime M... 1 World \n",
141 "1 PC World - Upcoming chip set will include buil... 4 Sci/Tech \n",
142 "2 Newspapers in Greece reflect a mixture of exhi... 2 Sports \n",
143 "3 SAN JOSE, Calif. -- Apple Computer (Quote, Cha... 4 Sci/Tech \n",
144 "4 Any product, any shape, any size -- manufactur... 4 Sci/Tech "
145 ]
146 },
147 "execution_count": 2,
148 "metadata": {},
149 "output_type": "execute_result"
150 }
151 ],
152 "source": [
153 "# load data\n",
154 "dataset_path = \"https://cdn.openai.com/API/examples/data/AG_news_samples.csv\"\n",
155 "df = pd.read_csv(dataset_path)\n",
156 "\n",
157 "# print dataframe\n",
158 "n_examples = 5\n",
159 "df.head(n_examples)"
160 ]
161 },
162 {
163 "cell_type": "markdown",
164 "metadata": {},
165 "source": [
166 "Let's take a look at those same examples, but not truncated by ellipses."
167 ]
168 },
169 {
170 "cell_type": "code",
171 "execution_count": 3,
172 "metadata": {},
173 "outputs": [
174 {
175 "name": "stdout",
176 "output_type": "stream",
177 "text": [
178 "\n",
179 "Title: World Briefings\n",
180 "Description: BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime Minister Tony Blair urged the international community to consider global warming a dire threat and agree on a plan of action to curb the quot;alarming quot; growth of greenhouse gases.\n",
181 "Label: World\n",
182 "\n",
183 "Title: Nvidia Puts a Firewall on a Motherboard (PC World)\n",
184 "Description: PC World - Upcoming chip set will include built-in security features for your PC.\n",
185 "Label: Sci/Tech\n",
186 "\n",
187 "Title: Olympic joy in Greek, Chinese press\n",
188 "Description: Newspapers in Greece reflect a mixture of exhilaration that the Athens Olympics proved successful, and relief that they passed off without any major setback.\n",
189 "Label: Sports\n",
190 "\n",
191 "Title: U2 Can iPod with Pictures\n",
192 "Description: SAN JOSE, Calif. -- Apple Computer (Quote, Chart) unveiled a batch of new iPods, iTunes software and promos designed to keep it atop the heap of digital music players.\n",
193 "Label: Sci/Tech\n",
194 "\n",
195 "Title: The Dream Factory\n",
196 "Description: Any product, any shape, any size -- manufactured on your desktop! The future is the fabricator. By Bruce Sterling from Wired magazine.\n",
197 "Label: Sci/Tech\n"
198 ]
199 }
200 ],
201 "source": [
202 "# print the title, description, and label of each example\n",
203 "for idx, row in df.head(n_examples).iterrows():\n",
204 " print(\"\")\n",
205 " print(f\"Title: {row['title']}\")\n",
206 " print(f\"Description: {row['description']}\")\n",
207 " print(f\"Label: {row['label']}\")"
208 ]
209 },
210 {
211 "cell_type": "markdown",
212 "metadata": {},
213 "source": [
214 "### 3. Build cache to save embeddings\n",
215 "\n",
216 "Before getting embeddings for these articles, let's set up a cache to save the embeddings we generate. In general, it's a good idea to save your embeddings so you can re-use them later. If you don't save them, you'll pay again each time you compute them again.\n",
217 "\n",
218 "To save you the expense of computing the embeddings needed for this demo, we've provided a pre-filled cache via the URL below. The cache is a dictionary that maps tuples of `(text, engine)` to a `list of floats` embedding. The cache is saved as a Python pickle file."
219 ]
220 },
221 {
222 "cell_type": "code",
223 "execution_count": 4,
224 "metadata": {},
225 "outputs": [],
226 "source": [
227 "# establish a cache of embeddings to avoid recomputing\n",
228 "# cache is a dict of tuples (text, engine) -> embedding, saved as a pickle file\n",
229 "\n",
230 "# set path to embedding cache\n",
231 "embedding_cache_path_to_load = \"https://cdn.openai.com/API/examples/data/example_embeddings_cache.pkl\"\n",
232 "embedding_cache_path_to_save = \"example_embeddings_cache.pkl\"\n",
233 "\n",
234 "# load the cache if it exists, and save a copy to disk\n",
235 "try:\n",
236 " embedding_cache = pd.read_pickle(embedding_cache_path_to_load)\n",
237 "except FileNotFoundError:\n",
238 " embedding_cache = {}\n",
239 "with open(embedding_cache_path_to_save, \"wb\") as embedding_cache_file:\n",
240 " pickle.dump(embedding_cache, embedding_cache_file)\n",
241 "\n",
242 "# define a function to retrieve embeddings from the cache if present, and otherwise request via the API\n",
243 "def embedding_from_string(\n",
244 " string: str,\n",
245 " engine: str = \"text-similarity-babbage-001\",\n",
246 " embedding_cache=embedding_cache\n",
247 ") -> List:\n",
248 " \"\"\"Return embedding of given string, using a cache to avoid recomputing.\"\"\"\n",
249 " if (string, engine) not in embedding_cache.keys():\n",
250 " embedding_cache[(string, engine)] = get_embedding(string, engine)\n",
251 " print('NOT FOUND')\n",
252 " with open(embedding_cache_path_to_save, \"wb\") as embedding_cache_file:\n",
253 " pickle.dump(embedding_cache, embedding_cache_file)\n",
254 " return embedding_cache[(string, engine)]"
255 ]
256 },
257 {
258 "cell_type": "markdown",
259 "metadata": {},
260 "source": [
261 "Let's check that it works by getting an embedding."
262 ]
263 },
264 {
265 "cell_type": "code",
266 "execution_count": 5,
267 "metadata": {},
268 "outputs": [
269 {
270 "name": "stdout",
271 "output_type": "stream",
272 "text": [
273 "\n",
274 "Example string: BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime Minister Tony Blair urged the international community to consider global warming a dire threat and agree on a plan of action to curb the quot;alarming quot; growth of greenhouse gases.\n",
275 "\n",
276 "Example embedding: [-0.029093433171510696, 0.007570988964289427, -0.011933144181966782, -0.016499919816851616, 0.026675179600715637, -0.016704540699720383, -0.019439026713371277, 0.015421006828546524, -0.009700911119580269, -0.02580088935792446]...\n"
277 ]
278 }
279 ],
280 "source": [
281 "# as an example, take the first description from the dataset\n",
282 "example_string = df[\"description\"].values[0]\n",
283 "print(f\"\\nExample string: {example_string}\")\n",
284 "\n",
285 "# print the first 10 dimensions of the embedding\n",
286 "example_embedding = embedding_from_string(example_string, engine=\"text-similarity-babbage-001\")\n",
287 "print(f\"\\nExample embedding: {example_embedding[:10]}...\")"
288 ]
289 },
290 {
291 "cell_type": "markdown",
292 "metadata": {},
293 "source": [
294 "### 4. Recommend similar articles based on embeddings\n",
295 "\n",
296 "To find similar articles, let's follow a three-step plan:\n",
297 "1. Get the similarity embeddings of all the article descriptions\n",
298 "2. Calculate the distance between a source title and all other articles\n",
299 "3. Print out the other articles closest to the source title"
300 ]
301 },
302 {
303 "cell_type": "code",
304 "execution_count": 6,
305 "metadata": {},
306 "outputs": [],
307 "source": [
308 "def print_recommendations_from_strings(\n",
309 " strings: List[str],\n",
310 " index_of_source_string: int,\n",
311 " k_nearest_neighbors: int = 1,\n",
312 " engine=\"text-similarity-babbage-001\",\n",
313 ") -> List[int]:\n",
314 " \"\"\"Print out the k nearest neighbors of a given string.\"\"\"\n",
315 " # get embeddings for all strings\n",
316 " embeddings = [embedding_from_string(string, engine=engine) for string in strings]\n",
317 " # get the embedding of the source string\n",
318 " query_embedding = embeddings[index_of_source_string]\n",
319 " # get distances between the source embedding and other embeddings (function from embeddings_utils.py)\n",
320 " distances = distances_from_embeddings(query_embedding, embeddings, distance_metric=\"cosine\")\n",
321 " # get indices of nearest neighbors (function from embeddings_utils.py)\n",
322 " indices_of_nearest_neighbors = indices_of_nearest_neighbors_from_distances(distances)\n",
323 "\n",
324 " # print out source string\n",
325 " query_string = strings[index_of_source_string]\n",
326 " print(f\"Source string: {query_string}\")\n",
327 " # print out its k nearest neighbors\n",
328 " k_counter = 0\n",
329 " for i in indices_of_nearest_neighbors:\n",
330 " # skip any strings that are identical matches to the starting string\n",
331 " if query_string == strings[i]:\n",
332 " continue\n",
333 " # stop after printing out k articles\n",
334 " if k_counter >= k_nearest_neighbors:\n",
335 " break\n",
336 " k_counter += 1\n",
337 "\n",
338 " # print out the similar strings and their distances\n",
339 " print(\n",
340 " f\"\"\"\n",
341 " --- Recommendation #{k_counter} (nearest neighbor {k_counter} of {k_nearest_neighbors}) ---\n",
342 " String: {strings[i]}\n",
343 " Distance: {distances[i]:0.3f}\"\"\"\n",
344 " )\n",
345 "\n",
346 " return indices_of_nearest_neighbors"
347 ]
348 },
349 {
350 "cell_type": "markdown",
351 "metadata": {},
352 "source": [
353 "### 5. Example recommendations\n",
354 "\n",
355 "Let's look for articles similar to first one, which was about Tony Blair."
356 ]
357 },
358 {
359 "cell_type": "code",
360 "execution_count": 7,
361 "metadata": {},
362 "outputs": [
363 {
364 "name": "stdout",
365 "output_type": "stream",
366 "text": [
367 "Source string: BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime Minister Tony Blair urged the international community to consider global warming a dire threat and agree on a plan of action to curb the quot;alarming quot; growth of greenhouse gases.\n",
368 "\n",
369 " --- Recommendation #1 (nearest neighbor 1 of 5) ---\n",
370 " String: THE re-election of British Prime Minister Tony Blair would be seen as an endorsement of the military action in Iraq, Prime Minister John Howard said today.\n",
371 " Distance: 0.164\n",
372 "\n",
373 " --- Recommendation #2 (nearest neighbor 2 of 5) ---\n",
374 " String: Israel is prepared to back a Middle East conference convened by Tony Blair early next year despite having expressed fears that the British plans were over-ambitious and designed \n",
375 " Distance: 0.169\n",
376 "\n",
377 " --- Recommendation #3 (nearest neighbor 3 of 5) ---\n",
378 " String: WASHINGTON (Reuters) - President Bush on Friday set a four-year goal of seeing a Palestinian state established and he and British Prime Minister Tony Blair vowed to mobilize international support to help make it happen now that Yasser Arafat is dead.\n",
379 " Distance: 0.174\n",
380 "\n",
381 " --- Recommendation #4 (nearest neighbor 4 of 5) ---\n",
382 " String: AP - President Bush declared Friday that charges of voter fraud have cast doubt on the Ukrainian election, and warned that any European-negotiated pact on Iran's nuclear program must ensure the world can verify Tehran's compliance.\n",
383 " Distance: 0.179\n",
384 "\n",
385 " --- Recommendation #5 (nearest neighbor 5 of 5) ---\n",
386 " String: AFP - A battle group of British troops rolled out of southern Iraq on a US-requested mission to deadlier areas near Baghdad, in a major political gamble for British Prime Minister Tony Blair.\n",
387 " Distance: 0.182\n"
388 ]
389 }
390 ],
391 "source": [
392 "article_descriptions = df[\"description\"].tolist()\n",
393 "\n",
394 "tony_blair_articles = print_recommendations_from_strings(\n",
395 " strings=article_descriptions, # let's base similarity off of the article description\n",
396 " index_of_source_string=0, # let's look at articles similar to the first one about Tony Blair\n",
397 " k_nearest_neighbors=5, # let's look at the 5 most similar articles\n",
398 ")"
399 ]
400 },
401 {
402 "cell_type": "markdown",
403 "metadata": {},
404 "source": [
405 "Pretty good! All 5 of the recommendations look similar to the original article about Tony Blair. Interestingly, note that #4 doesn't mention the words Tony Blair, but is nonetheless recommended by the model, presumably because the model understands that Tony Blair tends to be related to President Bush or European pacts over Iran's nuclear program. This illustrates the potential power of using embeddings rather than basic string matching; our models understand what topics are related to one another, even when their words don't overlap."
406 ]
407 },
408 {
409 "cell_type": "markdown",
410 "metadata": {},
411 "source": [
412 "Let's see how our recommender does on the second example article about NVIDIA's new chipset with more security."
413 ]
414 },
415 {
416 "cell_type": "code",
417 "execution_count": 8,
418 "metadata": {},
419 "outputs": [
420 {
421 "name": "stdout",
422 "output_type": "stream",
423 "text": [
424 "Source string: PC World - Upcoming chip set will include built-in security features for your PC.\n",
425 "\n",
426 " --- Recommendation #1 (nearest neighbor 1 of 5) ---\n",
427 " String: PC World - Updated antivirus software for businesses adds intrusion prevention features.\n",
428 " Distance: 0.108\n",
429 "\n",
430 " --- Recommendation #2 (nearest neighbor 2 of 5) ---\n",
431 " String: PC World - Send your video throughout your house--wirelessly--with new gateways and media adapters.\n",
432 " Distance: 0.160\n",
433 "\n",
434 " --- Recommendation #3 (nearest neighbor 3 of 5) ---\n",
435 " String: PC World - The one-time World Class Product of the Year PDA gets a much-needed upgrade.\n",
436 " Distance: 0.161\n",
437 "\n",
438 " --- Recommendation #4 (nearest neighbor 4 of 5) ---\n",
439 " String: PC World - Symantec, McAfee hope raising virus-definition fees will move users to\\ suites.\n",
440 " Distance: 0.166\n",
441 "\n",
442 " --- Recommendation #5 (nearest neighbor 5 of 5) ---\n",
443 " String: Ziff Davis - The company this week will unveil more programs and technologies designed to ease users of its high-end servers onto its Integrity line, which uses Intel's 64-bit Itanium processor.\n",
444 " Distance: 0.193\n"
445 ]
446 }
447 ],
448 "source": [
449 "chipset_security_articles = print_recommendations_from_strings(\n",
450 " strings=article_descriptions, # let's base similarity off of the article description\n",
451 " index_of_source_string=1, # let's look at articles similar to the second one about a more secure chipset\n",
452 " k_nearest_neighbors=5, # let's look at the 5 most similar articles\n",
453 ")"
454 ]
455 },
456 {
457 "cell_type": "markdown",
458 "metadata": {},
459 "source": [
460 "From the printed distances, you can see that the #1 recommendation is much closer than all the others (0.108 vs 0.160+). And the #1 recommendation looks very similar to the starting article - it's another article from PC World about increasing computer security. Pretty good! "
461 ]
462 },
463 {
464 "cell_type": "markdown",
465 "metadata": {},
466 "source": [
467 "## Appendix: Using embeddings in more sophisticated recommenders\n",
468 "\n",
469 "A more sophisticated way to build a recommender system is to train a machine learning model that takes in tens or hundreds of signals, such as item popularity or user click data. Even in this system, embeddings can be a very useful signal into the recommender, especially for items that are being 'cold started' with no user data yet (e.g., a brand new product added to the catalog without any clicks yet)."
470 ]
471 },
472 {
473 "cell_type": "markdown",
474 "metadata": {},
475 "source": [
476 "## Appendix: Using embeddings to visualize similar articles"
477 ]
478 },
479 {
480 "cell_type": "markdown",
481 "metadata": {},
482 "source": [
483 "To get a sense of what our nearest neighbor recommender is doing, let's visualize the article embeddings. Although we can't plot the 2048 dimensions of each embedding vector, we can use techniques like [t-SNE](https://en.wikipedia.org/wiki/T-distributed_stochastic_neighbor_embedding) or [PCA](https://en.wikipedia.org/wiki/Principal_component_analysis) to compress the embeddings down into 2 or 3 dimensions, which we can chart.\n",
484 "\n",
485 "Before visualizing the nearest neighbors, let's visualize all of the article descriptions using t-SNE. Note that t-SNE is not deterministic, meaning that results may vary from run to run."
486 ]
487 },
488 {
489 "cell_type": "code",
490 "execution_count": 9,
491 "metadata": {},
492 "outputs": [
493 {
494 "name": "stderr",
495 "output_type": "stream",
496 "text": [
497 "/Users/ted/.virtualenvs/openai/lib/python3.9/site-packages/sklearn/manifold/_t_sne.py:982: FutureWarning: The PCA initialization in TSNE will change to have the standard deviation of PC1 equal to 1e-4 in 1.2. This will ensure better convergence.\n",
498 " warnings.warn(\n"
499 ]
500 },
501 {
502 "data": {
503 "application/vnd.plotly.v1+json": {
504 "config": {
505 "plotlyServerURL": "https://plot.ly"
506 },
507 "data": [
508 {
509 "customdata": [
510 [
511 "BRITAIN: BLAIR WARNS OF<br>CLIMATE THREAT Prime Minister<br>Tony Blair urged the<br>international community to<br>consider global warming a dire<br>threat and agree on a plan of<br>action to curb the<br>quot;alarming quot; growth of<br>greenhouse gases."
512 ],
513 [
514 "KABUL, Sept 22 (AFP): Three US<br>soldiers were killed and 14<br>wounded in a series of fierce<br>clashes with suspected Taliban<br>fighters in south and eastern<br>Afghanistan this week, the US<br>military said Wednesday."
515 ],
516 [
517 "AUSTRALIAN journalist John<br>Martinkus is lucky to be alive<br>after spending 24 hours in the<br>hands of Iraqi militants at<br>the weekend. Martinkus was in<br>Baghdad working for the SBS<br>Dateline TV current affairs<br>program"
518 ],
519 [
520 " GAZA (Reuters) - An Israeli<br>helicopter fired a missile<br>into a town in the southern<br>Gaza Strip late on Wednesday,<br>witnesses said, hours after a<br>Palestinian suicide bomber<br>blew herself up in Jerusalem,<br>killing two Israeli border<br>policemen."
521 ],
522 [
523 "RIYADH, Saudi Arabia -- Saudi<br>police are seeking two young<br>men in the killing of a Briton<br>in a Riyadh parking lot, the<br>Interior Ministry said today,<br>and the British ambassador<br>called it a terrorist attack."
524 ],
525 [
526 "A gas explosion at a coal mine<br>in northern China killed 33<br>workers in the 10th deadly<br>mine blast reported in three<br>months. The explosion occurred<br>yesterday at 4:20 pm at Nanlou<br>township"
527 ],
528 [
529 "Reuters - Palestinian leader<br>Mahmoud Abbas called\\Israel<br>\"the Zionist enemy\" Tuesday,<br>unprecedented language for\\the<br>relative moderate who is<br>expected to succeed Yasser<br>Arafat."
530 ],
531 [
532 "Nasser al-Qidwa, Palestinian<br>representative at the United<br>Nations and nephew of late<br>leader Yasser Arafat, handed<br>Arafat #39;s death report to<br>the Palestinian National<br>Authority (PNA) on Saturday."
533 ],
534 [
535 "CAIRO, Egypt - France's<br>foreign minister appealed<br>Monday for the release of two<br>French journalists abducted in<br>Baghdad, saying the French<br>respect all religions. He did<br>not rule out traveling to<br>Baghdad..."
536 ],
537 [
538 "United Arab Emirates President<br>and ruler of Abu Dhabi Sheik<br>Zayed bin Sultan al-Nayhan<br>died Tuesday, official<br>television reports. He was 86."
539 ],
540 [
541 "PALESTINIAN leader Yasser<br>Arafat today issued an urgent<br>call for the immediate release<br>of two French journalists<br>taken hostage in Iraq."
542 ],
543 [
544 "The al-Qaida terrorist network<br>spent less than \\$50,000 on<br>each of its major attacks<br>except for the Sept. 11, 2001,<br>suicide hijackings, and one of<br>its hallmarks is using"
545 ],
546 [
547 "A FATHER who scaled the walls<br>of a Cardiff court dressed as<br>superhero Robin said the<br>Buckingham Palace protester<br>posed no threat. Fathers 4<br>Justice activist Jim Gibson,<br>who earlier this year staged<br>an eye-catching"
548 ],
549 [
550 "Julia Gillard has reportedly<br>bowed out of the race to<br>become shadow treasurer,<br>taking enormous pressure off<br>Opposition Leader Mark Latham."
551 ],
552 [
553 "AFP - Maybe it's something to<br>do with the fact that the<br>playing area is so vast that<br>you need a good pair of<br>binoculars to see the action<br>if it's not taking place right<br>in front of the stands."
554 ],
555 [
556 "Egypt #39;s release of accused<br>Israeli spy Azzam Azzam in an<br>apparent swap for six Egyptian<br>students held on suspicion of<br>terrorism is expected to melt<br>the ice and perhaps result"
557 ],
558 [
559 "GAZA CITY, Gaza Strip: Hamas<br>militants killed an Israeli<br>soldier and wounded four with<br>an explosion in a booby-<br>trapped chicken coop on<br>Tuesday, in what the Islamic<br>group said was an elaborate<br>scheme to lure troops to the<br>area with the help of a double"
560 ],
561 [
562 "AP - The 300 men filling out<br>forms in the offices of an<br>Iranian aid group were offered<br>three choices: Train for<br>suicide attacks against U.S.<br>troops in Iraq, for suicide<br>attacks against Israelis or to<br>assassinate British author<br>Salman Rushdie."
563 ],
564 [
565 "ATHENS, Greece - Gail Devers,<br>the most talented yet star-<br>crossed hurdler of her<br>generation, was unable to<br>complete even one hurdle in<br>100-meter event Sunday -<br>failing once again to win an<br>Olympic hurdling medal.<br>Devers, 37, who has three<br>world championships in the<br>hurdles but has always flopped<br>at the Olympics, pulled up<br>short and screamed as she slid<br>under the first hurdle..."
566 ],
567 [
568 " NAIROBI (Reuters) - The<br>Sudanese government and its<br>southern rebel opponents have<br>agreed to sign a pledge in the<br>Kenyan capital on Friday to<br>formally end a brutal 21-year-<br>old civil war, with U.N.<br>Security Council ambassadors<br>as witnesses."
569 ],
570 [
571 "AP - Former Guatemalan<br>President Alfonso Portillo<br>#151; suspected of corruption<br>at home #151; is living and<br>working part-time in the same<br>Mexican city he fled two<br>decades ago to avoid arrest on<br>murder charges, his close<br>associates told The Associated<br>Press on Sunday."
572 ],
573 [
574 "washingtonpost.com - BRUSSELS,<br>Aug. 26 -- The United States<br>will have to wait until next<br>year to see its fight with the<br>European Union over biotech<br>foods resolved, as the World<br>Trade Organization agreed to<br>an E.U. request to bring<br>scientists into the debate,<br>officials said Thursday."
575 ],
576 [
577 "Insisting that Hurriyat<br>Conference is the real<br>representative of Kashmiris,<br>Pakistan has claimed that<br>India is not ready to accept<br>ground realities in Kashmir."
578 ],
579 [
580 "VIENNA -- After two years of<br>investigating Iran's atomic<br>program, the UN nuclear<br>watchdog still cannot rule out<br>that Tehran has a secret atom<br>bomb project as Washington<br>insists, the agency's chief<br>said yesterday."
581 ],
582 [
583 "AFP - US Secretary of State<br>Colin Powell wrapped up a<br>three-nation tour of Asia<br>after winning pledges from<br>Japan, China and South Korea<br>to press North Korea to resume<br>stalled talks on its nuclear<br>weapons programs."
584 ],
585 [
586 "CAIRO, Egypt An Egyptian<br>company says one of its four<br>workers who had been kidnapped<br>in Iraq has been freed. It<br>says it can #39;t give the<br>status of the others being<br>held hostage but says it is<br>quot;doing its best to secure<br>quot; their release."
587 ],
588 [
589 "AFP - Hosts India braced<br>themselves for a harrowing<br>chase on a wearing wicket in<br>the first Test after Australia<br>declined to enforce the<br>follow-on here."
590 ],
591 [
592 "Prime Minister Paul Martin of<br>Canada urged Haitian leaders<br>on Sunday to allow the<br>political party of the deposed<br>president, Jean-Bertrand<br>Aristide, to take part in new<br>elections."
593 ],
594 [
595 "Hostage takers holding up to<br>240 people at a school in<br>southern Russia have refused<br>to talk with a top Islamic<br>leader and demanded to meet<br>with regional leaders instead,<br>ITAR-TASS reported on<br>Wednesday."
596 ],
597 [
598 "Three children from a care<br>home are missing on the<br>Lancashire moors after they<br>are separated from a group."
599 ],
600 [
601 "Diabetics should test their<br>blood sugar levels more<br>regularly to reduce the risk<br>of cardiovascular disease, a<br>study says."
602 ],
603 [
604 "Iraq's interim Prime Minister<br>Ayad Allawi announced that<br>proceedings would begin<br>against former Baath Party<br>leaders."
605 ],
606 [
607 "A toxic batch of home-brewed<br>alcohol has killed 31 people<br>in several towns in central<br>Pakistan, police and hospital<br>officials say."
608 ],
609 [
610 " BEIJING (Reuters) - North<br>Korea is committed to holding<br>six-party talks aimed at<br>resolving the crisis over its<br>nuclear weapons program, but<br>has not indicated when, a top<br>British official said on<br>Tuesday."
611 ],
612 [
613 " BAGHDAD (Reuters) - Iraq's<br>interim government extended<br>the closure of Baghdad<br>international airport<br>indefinitely on Saturday<br>under emergency rule imposed<br>ahead of this week's U.S.-led<br>offensive on Falluja."
614 ],
615 [
616 "Rivaling Bush vs. Kerry for<br>bitterness, doctors and trial<br>lawyers are squaring off this<br>fall in an unprecedented four-<br>state struggle over limiting<br>malpractice awards..."
617 ],
618 [
619 "AP - Hundreds of tribesmen<br>gathered Tuesday near the area<br>where suspected al-Qaida-<br>linked militants are holding<br>two Chinese engineers and<br>demanding safe passage to<br>their reputed leader, a former<br>U.S. prisoner from Guantanamo<br>Bay, Cuba, officials and<br>residents said."
620 ],
621 [
622 "In an alarming development,<br>high-precision equipment and<br>materials which could be used<br>for making nuclear bombs have<br>disappeared from some Iraqi<br>facilities, the United Nations<br>watchdog agency has said."
623 ],
624 [
625 "A US airman dies and two are<br>hurt as a helicopter crashes<br>due to technical problems in<br>western Afghanistan."
626 ],
627 [
628 "Jacques Chirac has ruled out<br>any withdrawal of French<br>troops from Ivory Coast,<br>despite unrest and anti-French<br>attacks, which have forced the<br>evacuation of thousands of<br>Westerners."
629 ],
630 [
631 "Japanese Prime Minister<br>Junichiro Koizumi reshuffled<br>his cabinet yesterday,<br>replacing several top<br>ministers in an effort to<br>boost his popularity,<br>consolidate political support<br>and quicken the pace of<br>reforms in the world #39;s<br>second-largest economy."
632 ],
633 [
634 "TBILISI (Reuters) - At least<br>two Georgian soldiers were<br>killed and five wounded in<br>artillery fire with<br>separatists in the breakaway<br>region of South Ossetia,<br>Georgian officials said on<br>Wednesday."
635 ],
636 [
637 "Laksamana.Net - Two Indonesian<br>female migrant workers freed<br>by militants in Iraq are<br>expected to arrive home within<br>a day or two, the Foreign<br>Affairs Ministry said<br>Wednesday (6/10/04)."
638 ],
639 [
640 "A bus was hijacked today and<br>shots were fired at police who<br>surrounded it on the outskirts<br>of Athens. Police did not know<br>how many passengers were<br>aboard the bus."
641 ],
642 [
643 "AP - President Bashar Assad<br>shuffled his Cabinet on<br>Monday, just weeks after the<br>United States and the United<br>Nations challenged Syria over<br>its military presence in<br>Lebanon and the security<br>situation along its border<br>with Iraq."
644 ],
645 [
646 "AP - President Vladimir Putin<br>has signed a bill confirming<br>Russia's ratification of the<br>Kyoto Protocol, the Kremlin<br>said Friday, clearing the way<br>for the global climate pact to<br>come into force early next<br>year."
647 ],
648 [
649 "AP - The authenticity of newly<br>unearthed memos stating that<br>George W. Bush failed to meet<br>standards of the Texas Air<br>National Guard during the<br>Vietnam War was questioned<br>Thursday by the son of the<br>late officer who reportedly<br>wrote the memos."
650 ],
651 [
652 "Canadian Press - OAKVILLE,<br>Ont. (CP) - The body of a<br>missing autistic man was<br>pulled from a creek Monday,<br>just metres from where a key<br>piece of evidence was<br>uncovered but originally<br>overlooked because searchers<br>had the wrong information."
653 ],
654 [
655 "AFP - German Chancellor<br>Gerhard Schroeder arrived in<br>Libya for an official visit<br>during which he is to hold<br>talks with Libyan leader<br>Moamer Kadhafi."
656 ],
657 [
658 "The government will examine<br>claims 100,000 Iraqi civilians<br>have been killed since the US-<br>led invasion, Jack Straw says."
659 ],
660 [
661 "Eton College and Clarence<br>House joined forces yesterday<br>to deny allegations due to be<br>made at an employment tribunal<br>today by a former art teacher<br>that she improperly helped<br>Prince Harry secure an A-level<br>pass in art two years ago."
662 ],
663 [
664 "AFP - Great Britain's chances<br>of qualifying for the World<br>Group of the Davis Cup were<br>evaporating rapidly after<br>Austria moved into a 2-1 lead<br>following the doubles."
665 ],
666 [
667 "Asia-Pacific leaders meet in<br>Australia to discuss how to<br>keep nuclear weapons out of<br>the hands of extremists."
668 ],
669 [
670 " TALL AFAR, Iraq -- A three-<br>foot-high coil of razor wire,<br>21-ton armored vehicles and<br>American soldiers with black<br>M-4 assault rifles stood<br>between tens of thousands of<br>people and their homes last<br>week."
671 ],
672 [
673 "LAKE GEORGE, N.Y. - Even<br>though he's facing double hip<br>replacement surgery, Bill<br>Smith is more than happy to<br>struggle out the door each<br>morning, limp past his brand<br>new P.T..."
674 ],
675 [
676 " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>poured cold water on Tuesday<br>on recent international<br>efforts to restart stalled<br>peace talks with Syria, saying<br>there was \"no possibility\" of<br>returning to previous<br>discussions."
677 ],
678 [
679 "Dutch smugness was slapped<br>hard during the past<br>fortnight. The rude awakening<br>began with the barbaric<br>slaying of controversial<br>filmmaker Theo van Gogh on<br>November 2. Then followed a<br>reciprocal cycle of some"
680 ],
681 [
682 "pee writes quot;A passenger<br>on a commuter plane in<br>northern Norway attacked both<br>pilots and at least one<br>passenger with an axe as the<br>aircraft was coming in to<br>land."
683 ],
684 [
685 "Prime Minister Ariel Sharon<br>pledged Sunday to escalate a<br>broad Israeli offensive in<br>northern Gaza, saying troops<br>will remain until Palestinian<br>rocket attacks are halted.<br>Israeli officials said the<br>offensive -- in which 58<br>Palestinians and three<br>Israelis have been killed --<br>will help clear the way for an<br>Israeli withdrawal."
686 ],
687 [
688 "NEW YORK - Wall Street<br>professionals know to keep<br>their expectations in check in<br>September, historically the<br>worst month of the year for<br>stocks. As summertime draws to<br>a close, money managers are<br>getting back to business,<br>cleaning house, and often<br>sending the market lower in<br>the process..."
689 ],
690 [
691 "A group linked to al Qaeda<br>ally Abu Musab al-Zarqawi said<br>it had tried to kill Iraq<br>#39;s environment minister on<br>Tuesday and warned it would<br>not miss next time, according<br>to an Internet statement."
692 ],
693 [
694 "The Israeli military killed<br>four Palestinian militants on<br>Wednesday as troops in tanks<br>and armored vehicles pushed<br>into another town in the<br>northern Gaza Strip, extending"
695 ],
696 [
697 "KIRKUK, Iraq - A suicide<br>attacker detonated a car bomb<br>Saturday outside a police<br>academy in the northern Iraqi<br>city of Kirkuk as hundreds of<br>trainees and civilians were<br>leaving for the day, killing<br>at least 20 people and<br>wounding 36, authorities said.<br>Separately, U.S and Iraqi<br>forces clashed with insurgents<br>in another part of northern<br>Iraq after launching an<br>operation to destroy an<br>alleged militant cell in the<br>town of Tal Afar, the U.S..."
698 ],
699 [
700 "AP - Many states are facing<br>legal challenges over possible<br>voting problems Nov. 2. A look<br>at some of the developments<br>Thursday:"
701 ],
702 [
703 "Israeli troops withdrew from<br>the southern Gaza Strip town<br>of Khan Yunis on Tuesday<br>morning, following a 30-hour<br>operation that left 17<br>Palestinians dead."
704 ],
705 [
706 "PM-designate Omar Karameh<br>forms a new 30-member cabinet<br>which includes women for the<br>first time."
707 ],
708 [
709 "Bahrain #39;s king pardoned a<br>human rights activist who<br>convicted of inciting hatred<br>of the government and<br>sentenced to one year in<br>prison Sunday in a case linked<br>to criticism of the prime<br>minister."
710 ],
711 [
712 "Leaders from 38 Asian and<br>European nations are gathering<br>in Vietnam for a summit of the<br>Asia-Europe Meeting, know as<br>ASEM. One thousand delegates<br>are to discuss global trade<br>and regional politics during<br>the two-day forum."
713 ],
714 [
715 "A US soldier has pleaded<br>guilty to murdering a wounded<br>16-year-old Iraqi boy. Staff<br>Sergeant Johnny Horne was<br>convicted Friday of the<br>unpremeditated murder"
716 ],
717 [
718 "Guinea-Bissau #39;s army chief<br>of staff and former interim<br>president, General Verissimo<br>Correia Seabra, was killed<br>Wednesday during unrest by<br>mutinous soldiers in the<br>former Portuguese"
719 ],
720 [
721 "31 October 2004 -- Exit polls<br>show that Prime Minister<br>Viktor Yanukovich and<br>challenger Viktor Yushchenko<br>finished on top in Ukraine<br>#39;s presidential election<br>today and will face each other<br>in a run-off next month."
722 ],
723 [
724 "Rock singer Bono pledges to<br>spend the rest of his life<br>trying to eradicate extreme<br>poverty around the world."
725 ],
726 [
727 "AP - Just when tourists<br>thought it was safe to go back<br>to the Princess Diana memorial<br>fountain, the mud has struck."
728 ],
729 [
730 "AP - Three times a week, The<br>Associated Press picks an<br>issue and asks President Bush<br>and Democratic presidential<br>candidate John Kerry a<br>question about it. Today's<br>question and their responses:"
731 ],
732 [
733 "In an apparent damage control<br>exercise, Russian President<br>Vladimir Putin on Saturday<br>said he favored veto rights<br>for India as new permanent<br>member of the UN Security<br>Council."
734 ],
735 [
736 "AP - Nigeria's Senate has<br>ordered a subsidiary of<br>petroleum giant Royal/Dutch<br>Shell to pay a Nigerian ethnic<br>group #36;1.5 billion for oil<br>spills in their homelands, but<br>the legislative body can't<br>enforce the resolution, an<br>official said Wednesday."
737 ],
738 [
739 "Australian troops in Baghdad<br>came under attack today for<br>the first time since the end<br>of the Iraq war when a car<br>bomb exploded injuring three<br>soldiers and damaging an<br>Australian armoured convoy."
740 ],
741 [
742 "Pakistans decision to refuse<br>the International Atomic<br>Energy Agency to have direct<br>access to Dr AQ Khan is<br>correct on both legal and<br>political counts."
743 ],
744 [
745 "MANILA, 4 December 2004 - With<br>floods receding, rescuers<br>raced to deliver food to<br>famished survivors in<br>northeastern Philippine<br>villages isolated by back-to-<br>back storms that left more<br>than 650 people dead and<br>almost 400 missing."
746 ],
747 [
748 "Talks on where to build the<br>world #39;s first nuclear<br>fusion reactor ended without a<br>deal on Tuesday but the<br>European Union said Japan and<br>the United States no longer<br>firmly opposed its bid to put<br>the plant in France."
749 ],
750 [
751 "CLEVELAND - The White House<br>said Vice President Dick<br>Cheney faces a \"master<br>litigator\" when he debates<br>Sen. John Edwards Tuesday<br>night, a backhanded compliment<br>issued as the Republican<br>administration defended itself<br>against criticism that it has<br>not acknowledged errors in<br>waging war in Iraq..."
752 ],
753 [
754 "SEOUL (Reuters) - The chairman<br>of South Korea #39;s ruling<br>Uri Party resigned on Thursday<br>after saying his father had<br>served as a military police<br>officer during Japan #39;s<br>1910-1945 colonial rule on the<br>peninsula."
755 ],
756 [
757 "ALERE, Uganda -- Kasmiro<br>Bongonyinge remembers sitting<br>up suddenly in his bed. It was<br>just after sunrise on a summer<br>morning two years ago, and the<br>old man, 87 years old and<br>blind, knew something was<br>wrong."
758 ],
759 [
760 "JAKARTA - Official results<br>have confirmed former army<br>general Susilo Bambang<br>Yudhoyono as the winner of<br>Indonesia #39;s first direct<br>presidential election, while<br>incumbent Megawati<br>Sukarnoputri urged her nation<br>Thursday to wait for the<br>official announcement"
761 ],
762 [
763 "Reuters - A ragged band of<br>children\\emerges ghost-like<br>from mists in Ethiopia's<br>highlands,\\thrusting bunches<br>of carrots at a car full of<br>foreigners."
764 ],
765 [
766 "AP - A U.N. human rights<br>expert criticized the U.S.-led<br>coalition forces in<br>Afghanistan for violating<br>international law by allegedly<br>beating Afghans to death and<br>forcing some to remove their<br>clothes or wear hoods."
767 ],
768 [
769 " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>said on Thursday Yasser<br>Arafat's death could be a<br>turning point for peacemaking<br>but he would pursue a<br>unilateral plan that would<br>strip Palestinians of some<br>land they want for a state."
770 ],
771 [
772 " AL-ASAD AIRBASE, Iraq<br>(Reuters) - Defense Secretary<br>Donald Rumsfeld swept into an<br>airbase in Iraq's western<br>desert Sunday to make a<br>first-hand evaluation of<br>operations to quell a raging<br>Iraqi insurgency in his first<br>such visit in five months."
773 ],
774 [
775 "WASHINGTON - Democrat John<br>Kerry accused President Bush<br>on Monday of sending U.S.<br>troops to the \"wrong war in<br>the wrong place at the wrong<br>time\" and said he'd try to<br>bring them all home in four<br>years..."
776 ],
777 [
778 "More lorry drivers are<br>bringing supplies to Nepal's<br>capital in defiance of an<br>indefinite blockade by Maoist<br>rebels."
779 ],
780 [
781 " BEIJING (Reuters) - Floods<br>and landslides have killed 76<br>people in southwest China in<br>the past four days and washed<br>away homes and roads, knocked<br>down power lines and cut off<br>at least one city, state<br>media said on Monday."
782 ],
783 [
784 "AP - Victims of the Sept. 11<br>attacks were mourned worldwide<br>Saturday, but in the Middle<br>East, amid sympathy for the<br>dead, Arabs said Washington's<br>support for Israel and the war<br>on terror launched in the<br>aftermath of the World Trade<br>Center's collapse have only<br>fueled anger and violence."
785 ],
786 [
787 "SEATTLE - Ichiro Suzuki set<br>the major league record for<br>hits in a season with 258,<br>breaking George Sisler's<br>84-year-old mark with a pair<br>of singles Friday night. The<br>Seattle star chopped a leadoff<br>single in the first inning,<br>then made history with a<br>grounder up the middle in the<br>third..."
788 ],
789 [
790 "The intruder who entered<br>British Queen Elizabeth II<br>#39;s official Scottish<br>residence and caused a<br>security scare was a reporter<br>from the London-based Sunday<br>Times newspaper, local media<br>reported Friday."
791 ],
792 [
793 "Canadian Press - FREDERICTON<br>(CP) - A New Brunswick truck<br>driver arrested in Ontario<br>this week has been accused by<br>police of stealing 50,000 cans<br>of Moosehead beer."
794 ],
795 [
796 "Chinese authorities detained a<br>prominent, U.S.-based Buddhist<br>leader in connection with his<br>plans to reopen an ancient<br>temple complex in the Chinese<br>province of Inner Mongolia<br>last week and have forced<br>dozens of his American<br>followers to leave the region,<br>local officials said<br>Wednesday."
797 ],
798 [
799 "Adorned with Turkish and EU<br>flags, Turkey #39;s newspapers<br>hailed Thursday an official EU<br>report recommending the<br>country start talks to join<br>the bloc, while largely<br>ignoring the stringent<br>conditions attached to the<br>announcement."
800 ],
801 [
802 "Thailand's prime minister<br>visits the southern town where<br>scores of Muslims died in army<br>custody after a rally."
803 ],
804 [
805 "Beijing: At least 170 miners<br>were trapped underground after<br>a gas explosion on Sunday<br>ignited a fire in a coalmine<br>in north-west China #39;s<br>Shaanxi province, reports<br>said."
806 ],
807 [
808 "SAMARRA (Iraq): With renewe d<br>wave of skirmishes between the<br>Iraqi insurgents and the US-<br>led coalition marines, several<br>people including top police<br>officers were put to death on<br>Saturday."
809 ],
810 [
811 "AFP - Like most US Latinos,<br>members of the extended<br>Rodriguez family say they will<br>cast their votes for Democrat<br>John Kerry in next month's<br>presidential polls."
812 ],
813 [
814 "FALLUJAH, Iraq -- Four Iraqi<br>fighters huddled in a trench,<br>firing rocket-propelled<br>grenades at Lieutenant Eric<br>Gregory's Bradley Fighting<br>Vehicle and the US tanks and<br>Humvees that were lumbering<br>through tight streets between<br>boxlike beige houses."
815 ],
816 [
817 "AP - Several thousand<br>Christians who packed a<br>cathedral compound in the<br>Egyptian capital hurled stones<br>at riot police Wednesday to<br>protest a woman's alleged<br>forced conversion to Islam. At<br>least 30 people were injured."
818 ],
819 [
820 "A group of Saudi religious<br>scholars have signed an open<br>letter urging Iraqis to<br>support jihad against US-led<br>forces. quot;Fighting the<br>occupiers is a duty for all<br>those who are able, quot; they<br>said in a statement posted on<br>the internet at the weekend."
821 ],
822 [
823 "Mountaineers retrieve three<br>bodies believed to have been<br>buried for 22 years on an<br>Indian glacier."
824 ],
825 [
826 "President Thabo Mbeki met with<br>Ivory Coast Prime Minister<br>Seydou Diarra for three hours<br>yesterday as part of talks<br>aimed at bringing peace to the<br>conflict-wracked Ivory Coast."
827 ],
828 [
829 " KATHMANDU (Reuters) - Nepal's<br>Maoist rebels have<br>temporarily suspended a<br>crippling economic blockade of<br>the capital from Wednesday,<br>saying the move was in<br>response to popular appeals."
830 ],
831 [
832 "Reuters - An Algerian<br>suspected of being a leader\\of<br>the Madrid train bombers has<br>been identified as one of<br>seven\\people who blew<br>themselves up in April to<br>avoid arrest, Spain's\\Interior<br>Ministry said on Friday."
833 ],
834 [
835 "KABUL: An Afghan man was found<br>guilty on Saturday of killing<br>four journalists in 2001,<br>including two from Reuters,<br>and sentenced to death."
836 ],
837 [
838 "Yasser Arafat, the leader for<br>decades of a fight for<br>Palestinian independence from<br>Israel, has died at a military<br>hospital in Paris, according<br>to news reports."
839 ],
840 [
841 " JABALYA, Gaza Strip (Reuters)<br>- Israel pulled most of its<br>forces out of the northern<br>Gaza Strip Saturday after a<br>four-day incursion it said<br>was staged to halt Palestinian<br>rocket attacks on southern<br>Israeli towns."
842 ],
843 [
844 "THE Turkish embassy in Baghdad<br>was investigating a television<br>report that two Turkish<br>hostages had been killed in<br>Iraq, but no confirmation was<br>available so far, a senior<br>Turkish diplomat said today."
845 ],
846 [
847 "Reuters - Thousands of<br>supporters of<br>Ukraine's\\opposition leader,<br>Viktor Yushchenko, celebrated<br>on the streets\\in the early<br>hours on Monday after an exit<br>poll showed him\\winner of a<br>bitterly fought presidential<br>election."
848 ],
849 [
850 "LONDON : The United States<br>faced rare criticism over<br>human rights from close ally<br>Britain, with an official<br>British government report<br>taking Washington to task over<br>concerns about Iraq and the<br>Guantanamo Bay jail."
851 ],
852 [
853 "LONDON - A bomb threat that<br>mentioned Iraq forced a New<br>York-bound Greek airliner to<br>make an emergency landing<br>Sunday at London's Stansted<br>Airport escorted by military<br>jets, authorities said. An<br>airport spokeswoman said an<br>Athens newspaper had received<br>a phone call saying there was<br>a bomb on board the Olympic<br>Airlines plane..."
854 ],
855 [
856 "ATHENS, Greece - Sheryl<br>Swoopes made three big plays<br>at the end - two baskets and<br>another on defense - to help<br>the United States squeeze out<br>a 66-62 semifinal victory over<br>Russia on Friday. Now, only<br>one game stands between the<br>U.S..."
857 ],
858 [
859 "Scientists are developing a<br>device which could improve the<br>lives of kidney dialysis<br>patients."
860 ],
861 [
862 "KABUL, Afghanistan The Afghan<br>government is blaming drug<br>smugglers for yesterday #39;s<br>attack on the leading vice<br>presidential candidate ."
863 ],
864 [
865 "One of the leading figures in<br>the Greek Orthodox Church, the<br>Patriarch of Alexandria Peter<br>VII, has been killed in a<br>helicopter crash in the Aegean<br>Sea."
866 ],
867 [
868 "CANBERRA, Australia -- The<br>sweat-stained felt hats worn<br>by Australian cowboys, as much<br>a part of the Outback as<br>kangaroos and sun-baked soil,<br>may be heading for the history<br>books. They fail modern<br>industrial safety standards."
869 ],
870 [
871 "A London-to-Washington flight<br>is diverted after a security<br>alert involving the singer<br>formerly known as Cat Stevens."
872 ],
873 [
874 "AP - President Bush declared<br>Friday that charges of voter<br>fraud have cast doubt on the<br>Ukrainian election, and warned<br>that any European-negotiated<br>pact on Iran's nuclear program<br>must ensure the world can<br>verify Tehran's compliance."
875 ],
876 [
877 "TheSpaceShipOne team is handed<br>the \\$10m cheque and trophy it<br>won for claiming the Ansari<br>X-Prize."
878 ],
879 [
880 "Security officials have<br>identified six of the<br>militants who seized a school<br>in southern Russia as being<br>from Chechnya, drawing a<br>strong connection to the<br>Chechen insurgents who have<br>been fighting Russian forces<br>for years."
881 ],
882 [
883 "SEOUL -- North Korea set three<br>conditions yesterday to be met<br>before it would consider<br>returning to six-party talks<br>on its nuclear programs."
884 ],
885 [
886 "US-backed Iraqi commandos were<br>poised Friday to storm rebel<br>strongholds in the northern<br>city of Mosul, as US military<br>commanders said they had<br>quot;broken the back quot; of<br>the insurgency with their<br>assault on the former rebel<br>bastion of Fallujah."
887 ],
888 [
889 "JERUSALEM (Reuters) - Prime<br>Minister Ariel Sharon, facing<br>a party mutiny over his plan<br>to quit the Gaza Strip, has<br>approved 1,000 more Israeli<br>settler homes in the West Bank<br>in a move that drew a cautious<br>response on Tuesday from ..."
890 ],
891 [
892 "GHAZNI, Afghanistan, 6 October<br>2004 - Wartime security was<br>rolled out for Afghanistans<br>interim President Hamid Karzai<br>as he addressed his first<br>election campaign rally<br>outside the capital yesterday<br>amid spiraling violence."
893 ],
894 [
895 "China has confirmed that it<br>found a deadly strain of bird<br>flu in pigs as early as two<br>years ago. China #39;s<br>Agriculture Ministry said two<br>cases had been discovered, but<br>it did not say exactly where<br>the samples had been taken."
896 ],
897 [
898 "AP - Ten years after the Irish<br>Republican Army's momentous<br>cease-fire, negotiations<br>resumed Wednesday in hope of<br>reviving a Catholic-Protestant<br>administration, an elusive<br>goal of Northern Ireland's<br>hard-fought peace process."
899 ],
900 [
901 " SANTO DOMINGO, Dominican<br>Republic, Sept. 18 -- Tropical<br>Storm Jeanne headed for the<br>Bahamas on Saturday after an<br>assault on the Dominican<br>Republic that killed 10<br>people, destroyed hundreds of<br>houses and forced thousands<br>from their homes."
902 ],
903 [
904 "An explosion tore apart a car<br>in Gaza City Monday, killing<br>at least one person,<br>Palestinian witnesses said.<br>They said Israeli warplanes<br>were circling overhead at the<br>time of the blast, indicating<br>a possible missile strike."
905 ],
906 [
907 "Beijing, Oct. 25 (PTI): China<br>and the US today agreed to<br>work jointly to re-energise<br>the six-party talks mechanism<br>aimed at dismantling North<br>Korea #39;s nuclear programmes<br>while Washington urged Beijing<br>to resume"
908 ],
909 [
910 "AFP - Sporadic gunfire and<br>shelling took place overnight<br>in the disputed Georgian<br>region of South Ossetia in<br>violation of a fragile<br>ceasefire, wounding seven<br>Georgian servicemen."
911 ],
912 [
913 " FALLUJA, Iraq (Reuters) -<br>U.S. forces hit Iraq's rebel<br>stronghold of Falluja with the<br>fiercest air and ground<br>bombardment in months, as<br>insurgents struck back on<br>Saturday with attacks that<br>killed up to 37 people in<br>Samarra."
914 ],
915 [
916 " NAJAF, Iraq (Reuters) - The<br>fate of a radical Shi'ite<br>rebellion in the holy city of<br>Najaf was uncertain Friday<br>amid disputed reports that<br>Iraqi police had gained<br>control of the Imam Ali<br>Mosque."
917 ],
918 [
919 "Until this week, only a few<br>things about the strange,<br>long-ago disappearance of<br>Charles Robert Jenkins were<br>known beyond a doubt. In the<br>bitter cold of Jan. 5, 1965,<br>the 24-year-old US Army<br>sergeant was leading"
920 ],
921 [
922 "The United States on Tuesday<br>modified slightly a threat of<br>sanctions on Sudan #39;s oil<br>industry in a revised text of<br>its UN resolution on<br>atrocities in the country<br>#39;s Darfur region."
923 ],
924 [
925 "AP - France intensified<br>efforts Tuesday to save the<br>lives of two journalists held<br>hostage in Iraq, and the Arab<br>League said the militants'<br>deadline for France to revoke<br>a ban on Islamic headscarves<br>in schools had been extended."
926 ],
927 [
928 "At least 12 people die in an<br>explosion at a fuel pipeline<br>on the outskirts of Nigeria's<br>biggest city, Lagos."
929 ],
930 [
931 "Volkswagen demanded a two-year<br>wage freeze for the<br>170,000-strong workforce at<br>Europe #39;s biggest car maker<br>yesterday, provoking union<br>warnings of imminent conflict<br>at key pay and conditions<br>negotiations."
932 ],
933 [
934 "Citing security concerns, the<br>U.S. Embassy on Thursday<br>banned its employees from<br>using the highway linking the<br>embassy area to the<br>international airport, a<br>10-mile stretch of road<br>plagued by frequent suicide<br>car-bomb attacks."
935 ],
936 [
937 "AP - Tom Daschle bade his<br>fellow Senate Democrats<br>farewell Tuesday with a plea<br>that they seek common ground<br>with Republicans yet continue<br>to fight for the less<br>fortunate."
938 ],
939 [
940 "AP - Police defused a bomb in<br>a town near Prime Minister<br>Silvio Berlusconi's villa on<br>the island of Sardinia on<br>Wednesday shortly after<br>British Prime Minister Tony<br>Blair finished a visit there<br>with the Italian leader."
941 ],
942 [
943 "The coffin of Yasser Arafat,<br>draped with the Palestinian<br>flag, was bound for Ramallah<br>in the West Bank Friday,<br>following a formal funeral on<br>a military compound near<br>Cairo."
944 ],
945 [
946 "US Ambassador to the United<br>Nations John Danforth resigned<br>on Thursday after serving in<br>the post for less than six<br>months. Danforth, 68, said in<br>a letter released Thursday"
947 ],
948 [
949 "ISLAMABAD, Pakistan -- Photos<br>were published yesterday in<br>newspapers across Pakistan of<br>six terror suspects, including<br>a senior Al Qaeda operative,<br>the government says were<br>behind attempts to assassinate<br>the nation's president."
950 ],
951 [
952 " ATHENS (Reuters) - The Athens<br>Paralympics canceled<br>celebrations at its closing<br>ceremony after seven<br>schoolchildren traveling to<br>watch the event died in a bus<br>crash on Monday."
953 ],
954 [
955 "DUBAI : An Islamist group has<br>threatened to kill two Italian<br>women held hostage in Iraq if<br>Rome does not withdraw its<br>troops from the war-torn<br>country within 24 hours,<br>according to an internet<br>statement."
956 ],
957 [
958 "A heavy quake rocked Indonesia<br>#39;s Papua province killing<br>at least 11 people and<br>wounding 75. The quake<br>destroyed 150 buildings,<br>including churches, mosques<br>and schools."
959 ],
960 [
961 "Reuters - A small group of<br>suspected\\gunmen stormed<br>Uganda's Water Ministry<br>Wednesday and took<br>three\\people hostage to<br>protest against proposals to<br>allow President\\Yoweri<br>Museveni for a third<br>term.\\Police and soldiers with<br>assault rifles cordoned off<br>the\\three-story building, just<br>328 feet from Uganda's<br>parliament\\building in the<br>capital Kampala."
962 ],
963 [
964 "Venezuela suggested Friday<br>that exiles living in Florida<br>may have masterminded the<br>assassination of a prosecutor<br>investigating a short-lived<br>coup against leftist President<br>Hugo Chvez"
965 ],
966 [
967 "Facing a popular outcry at<br>home and stern warnings from<br>Europe, the Turkish government<br>discreetly stepped back<br>Tuesday from a plan to<br>introduce a motion into a<br>crucial penal reform bill to<br>make adultery a crime<br>punishable by prison."
968 ],
969 [
970 "North-west Norfolk MP Henry<br>Bellingham has called for the<br>release of an old college<br>friend accused of plotting a<br>coup in Equatorial Guinea."
971 ],
972 [
973 "AFP - Want to buy a castle?<br>Head for the former East<br>Germany."
974 ],
975 [
976 "AFP - Steven Gerrard has moved<br>to allay Liverpool fans' fears<br>that he could be out until<br>Christmas after breaking a<br>metatarsal bone in his left<br>foot."
977 ],
978 [
979 "MINSK - Legislative elections<br>in Belarus held at the same<br>time as a referendum on<br>whether President Alexander<br>Lukashenko should be allowed<br>to seek a third term fell<br>significantly short of<br>democratic standards, foreign<br>observers said here Monday."
980 ],
981 [
982 "An Olympic sailor is charged<br>with the manslaughter of a<br>Briton who died after being<br>hit by a car in Athens."
983 ],
984 [
985 "AP - Secretary of State Colin<br>Powell on Friday praised the<br>peace deal that ended fighting<br>in Iraq's holy city of Najaf<br>and said the presence of U.S.<br>forces in the area helped make<br>it possible."
986 ],
987 [
988 "26 August 2004 -- Iraq #39;s<br>top Shi #39;ite cleric, Grand<br>Ayatollah Ali al-Sistani,<br>arrived in the city of Al-<br>Najaf today in a bid to end a<br>weeks-long conflict between US<br>forces and militiamen loyal to<br>Shi #39;ite cleric Muqtada al-<br>Sadr."
989 ],
990 [
991 "PARIS : French trade unions<br>called on workers at France<br>Telecom to stage a 24-hour<br>strike September 7 to protest<br>government plans to privatize<br>the public telecommunications<br>operator, union sources said."
992 ],
993 [
994 "The Indonesian tourism<br>industry has so far not been<br>affected by last week #39;s<br>bombing outside the Australian<br>embassy in Jakarta and<br>officials said they do not<br>expect a significant drop in<br>visitor numbers as a result of<br>the attack."
995 ],
996 [
997 "MARK Thatcher will have to<br>wait until at least next April<br>to face trial on allegations<br>he helped bankroll a coup<br>attempt in oil-rich Equatorial<br>Guinea."
998 ],
999 [
1000 "NEW YORK - A drop in oil<br>prices and upbeat outlooks<br>from Wal-Mart and Lowe's<br>helped send stocks sharply<br>higher Monday on Wall Street,<br>with the swing exaggerated by<br>thin late summer trading. The<br>Dow Jones industrials surged<br>nearly 130 points..."
1001 ],
1002 [
1003 "ROSTOV-ON-DON, Russia --<br>Hundreds of protesters<br>ransacked and occupied the<br>regional administration<br>building in a southern Russian<br>province Tuesday, demanding<br>the resignation of the region<br>#39;s president, whose former<br>son-in-law has been linked to<br>a multiple"
1004 ],
1005 [
1006 "AFP - Iraqi Foreign Minister<br>Hoshyar Zebari arrived<br>unexpectedly in the holy city<br>of Mecca Wednesday where he<br>met Crown Prince Abdullah bin<br>Abdul Aziz, the official SPA<br>news agency reported."
1007 ],
1008 [
1009 "Haitian police and UN troops<br>moved into a slum neighborhood<br>on Sunday and cleared street<br>barricades that paralyzed a<br>part of the capital."
1010 ],
1011 [
1012 "withdrawal of troops and<br>settlers from occupied Gaza<br>next year. Militants seek to<br>claim any pullout as a<br>victory. quot;Islamic Jihad<br>will not be broken by this<br>martyrdom, quot; said Khaled<br>al-Batsh, a senior political<br>leader in Gaza."
1013 ],
1014 [
1015 "The U.S. military has found<br>nearly 20 houses where<br>intelligence officers believe<br>hostages were tortured or<br>killed in this city, including<br>the house with the cage that<br>held a British contractor who<br>was beheaded last month."
1016 ],
1017 [
1018 "AFP - Opponents of the Lao<br>government may be plotting<br>bomb attacks in Vientiane and<br>other areas of Laos timed to<br>coincide with a summit of<br>Southeast Asian leaders the<br>country is hosting next month,<br>the United States said."
1019 ],
1020 [
1021 "AP - Russia agreed Thursday to<br>send warships to help NATO<br>naval patrols that monitor<br>suspicious vessels in the<br>Mediterranean, part of a push<br>for closer counterterrorism<br>cooperation between Moscow and<br>the western alliance."
1022 ],
1023 [
1024 "A military plane crashed in<br>the mountains near Caracas,<br>killing all 16 persons on<br>board, including two high-<br>ranking military officers,<br>officials said."
1025 ],
1026 [
1027 "A voice recording said to be<br>that of suspected Al Qaeda<br>commander Abu Mussab al-<br>Zarqawi, claims Iraq #39;s<br>Prime Minister Iyad Allawi is<br>the militant network #39;s<br>number one target."
1028 ],
1029 [
1030 "BEIJING -- More than a year<br>after becoming China's<br>president, Hu Jintao was<br>handed the full reins of power<br>yesterday when his<br>predecessor, Jiang Zemin, gave<br>up the nation's most powerful<br>military post."
1031 ],
1032 [
1033 "AP - Greenpeace activists<br>scaled the walls of Ford Motor<br>Co.'s Norwegian headquarters<br>Tuesday to protest plans to<br>destroy hundreds of non-<br>polluting electric cars."
1034 ],
1035 [
1036 "AFP - The chances of Rupert<br>Murdoch's News Corp relocating<br>from Australia to the United<br>States have increased after<br>one of its biggest<br>institutional investors has<br>chosen to abstain from a vote<br>next week on the move."
1037 ],
1038 [
1039 "AFP - An Indian minister said<br>a school text-book used in the<br>violence-prone western state<br>of Gujarat portrayed Adolf<br>Hitler as a role model."
1040 ],
1041 [
1042 "DOVER, N.H. (AP) -- Democrat<br>John Kerry is seizing on the<br>Bush administration's failure<br>to secure hundreds of tons of<br>explosives now missing in<br>Iraq."
1043 ],
1044 [
1045 "United Nations officials<br>report security breaches in<br>internally displaced people<br>and refugee camps in Sudan<br>#39;s embattled Darfur region<br>and neighboring Chad."
1046 ],
1047 [
1048 "KINGSTON, Jamaica - Hurricane<br>Ivan's deadly winds and<br>monstrous waves bore down on<br>Jamaica on Friday, threatening<br>a direct hit on its densely<br>populated capital after<br>ravaging Grenada and killing<br>at least 33 people. The<br>Jamaican government ordered<br>the evacuation of half a<br>million people from coastal<br>areas, where rains on Ivan's<br>outer edges were already<br>flooding roads..."
1049 ],
1050 [
1051 "North Korea has denounced as<br>quot;wicked terrorists quot;<br>the South Korean officials who<br>orchestrated last month #39;s<br>airlift to Seoul of 468 North<br>Korean defectors."
1052 ],
1053 [
1054 "The Black Watch regiment has<br>returned to its base in Basra<br>in southern Iraq after a<br>month-long mission standing in<br>for US troops in a more<br>violent part of the country,<br>the Ministry of Defence says."
1055 ],
1056 [
1057 "AP - A senior Congolese<br>official said Tuesday his<br>nation had been invaded by<br>neighboring Rwanda, and U.N.<br>officials said they were<br>investigating claims of<br>Rwandan forces clashing with<br>militias in the east."
1058 ],
1059 [
1060 "UNITED NATIONS - The United<br>Nations #39; nuclear agency<br>says it is concerned about the<br>disappearance of equipment and<br>materials from Iraq that could<br>be used to make nuclear<br>weapons."
1061 ],
1062 [
1063 " BRUSSELS (Reuters) - The EU's<br>historic deal with Turkey to<br>open entry talks with the vast<br>Muslim country was hailed by<br>supporters as a bridge builder<br>between Europe and the Islamic<br>world."
1064 ],
1065 [
1066 "Iraqi President Ghazi al-<br>Yawar, who was due in Paris on<br>Sunday to start a European<br>tour, has postponed his visit<br>to France due to the ongoing<br>hostage drama involving two<br>French journalists, Arab<br>diplomats said Friday."
1067 ],
1068 [
1069 " SAO PAULO, Brazil (Reuters) -<br>President Luiz Inacio Lula da<br>Silva's Workers' Party (PT)<br>won the mayoralty of six state<br>capitals in Sunday's municipal<br>vote but was forced into a<br>run-off to defend its hold on<br>the race's biggest prize, the<br>city of Sao Paulo."
1070 ],
1071 [
1072 "ATHENS, Greece - They are<br>America's newest golden girls<br>- powerful and just a shade<br>from perfection. The U.S..."
1073 ],
1074 [
1075 "AMMAN, Sept. 15. - The owner<br>of a Jordanian truck company<br>announced today that he had<br>ordered its Iraq operations<br>stopped in a bid to save the<br>life of a driver held hostage<br>by a militant group."
1076 ],
1077 [
1078 "Israel is prepared to back a<br>Middle East conference<br>convened by Tony Blair early<br>next year despite having<br>expressed fears that the<br>British plans were over-<br>ambitious and designed"
1079 ],
1080 [
1081 "AP - U.S. State Department<br>officials learned that seven<br>American children had been<br>abandoned at a Nigerian<br>orphanage but waited more than<br>a week to check on the youths,<br>who were suffering from<br>malnutrition, malaria and<br>typhoid, a newspaper reported<br>Saturday."
1082 ],
1083 [
1084 "\\Angry mobs in Ivory Coast's<br>main city, Abidjan, marched on<br>the airport, hours after it<br>came under French control."
1085 ],
1086 [
1087 "Several workers are believed<br>to have been killed and others<br>injured after a contruction<br>site collapsed at Dubai<br>airport. The workers were<br>trapped under rubble at the<br>site of a \\$4."
1088 ],
1089 [
1090 "Talks between Sudan #39;s<br>government and two rebel<br>groups to resolve the nearly<br>two-year battle resume Friday.<br>By Abraham McLaughlin Staff<br>writer of The Christian<br>Science Monitor."
1091 ],
1092 [
1093 "Stansted airport is the<br>designated emergency landing<br>ground for planes in British<br>airspace hit by in-flight<br>security alerts. Emergency<br>services at Stansted have<br>successfully dealt"
1094 ],
1095 [
1096 "The massive military operation<br>to retake Fallujah has been<br>quot;accomplished quot;, a<br>senior Iraqi official said.<br>Fierce fighting continued in<br>the war-torn city where<br>pockets of resistance were<br>still holding out against US<br>forces."
1097 ],
1098 [
1099 "There are some signs of<br>progress in resolving the<br>Nigerian conflict that is<br>riling global oil markets. The<br>leader of militia fighters<br>threatening to widen a battle<br>for control of Nigeria #39;s<br>oil-rich south has"
1100 ],
1101 [
1102 "A strong earthquake hit Taiwan<br>on Monday, shaking buildings<br>in the capital Taipei for<br>several seconds. No casualties<br>were reported."
1103 ],
1104 [
1105 "A policeman ran amok at a<br>security camp in Indian-<br>controlled Kashmir after an<br>argument and shot dead seven<br>colleagues before he was<br>gunned down, police said on<br>Sunday."
1106 ],
1107 [
1108 "New York police have developed<br>a pre-emptive strike policy,<br>cutting off demonstrations<br>before they grow large."
1109 ],
1110 [
1111 "Bulgaria has started its first<br>co-mission with the EU in<br>Bosnia and Herzegovina, along<br>with some 30 countries,<br>including Canada and Turkey."
1112 ],
1113 [
1114 "AP - The pileup of events in<br>the city next week, including<br>the Republican National<br>Convention, will add to the<br>security challenge for the New<br>York Police Department, but<br>commissioner Ray Kelly says,<br>\"With a big, experienced<br>police force, we can do it.\""
1115 ],
1116 [
1117 "LONDON, Dec 11 (IranMania) -<br>Iraqi Vice-President Ibrahim<br>al-Jaafari refused to believe<br>in remarks published Friday<br>that Iran was attempting to<br>influence Iraqi polls with the<br>aim of creating a<br>quot;crescent quot; dominated<br>by Shiites in the region."
1118 ],
1119 [
1120 "The late Princess Dianas<br>former bodyguard, Ken Wharfe,<br>dismisses her suspicions that<br>one of her lovers was bumped<br>off. Princess Diana had an<br>affair with Barry Mannakee, a<br>policeman who was assigned to<br>protect her."
1121 ],
1122 [
1123 "Long considered beyond the<br>reach of mainland mores, the<br>Florida city is trying to<br>limit blatant displays of<br>sexual behavior."
1124 ],
1125 [
1126 "Senator John Kerry said today<br>that the war in Iraq was a<br>\"profound diversion\" from the<br>war on terror and Osama bin<br>Laden."
1127 ],
1128 [
1129 "A group claiming to have<br>captured two Indonesian women<br>in Iraq has said it will<br>release them if Jakarta frees<br>Muslim cleric Abu Bakar Bashir<br>being held for alleged<br>terrorist links."
1130 ],
1131 [
1132 "Indonesian police said<br>yesterday that DNA tests had<br>identified a suicide bomber<br>involved in a deadly attack<br>this month on the Australian<br>embassy in Jakarta."
1133 ],
1134 [
1135 "NEW YORK - Wal-Mart Stores<br>Inc.'s warning of<br>disappointing sales sent<br>stocks fluctuating Monday as<br>investors' concerns about a<br>slowing economy offset their<br>relief over a drop in oil<br>prices. October contracts<br>for a barrel of light crude<br>were quoted at \\$46.48, down<br>24 cents, on the New York<br>Mercantile Exchange..."
1136 ],
1137 [
1138 "Iraq #39;s top Shi #39;ite<br>cleric made a sudden return to<br>the country on Wednesday and<br>said he had a plan to end an<br>uprising in the quot;burning<br>city quot; of Najaf, where<br>fighting is creeping ever<br>closer to its holiest shrine."
1139 ],
1140 [
1141 "KABUL, Afghanistan Aug. 22,<br>2004 - US soldiers sprayed a<br>pickup truck with bullets<br>after it failed to stop at a<br>roadblock in central<br>Afghanistan, killing two women<br>and a man and critically<br>wounding two other"
1142 ],
1143 [
1144 "SYDNEY -- Prime Minister John<br>Howard of Australia, a key US<br>ally and supporter of the Iraq<br>war, celebrated his election<br>win over opposition Labor<br>after voters enjoying the<br>fruits of a strong economy<br>gave him another term."
1145 ],
1146 [
1147 "BAGHDAD, Iraq - Two rockets<br>hit a downtown Baghdad hotel<br>housing foreigners and<br>journalists Thursday, and<br>gunfire erupted in the<br>neighborhood across the Tigris<br>River from the U.S. Embassy<br>compound..."
1148 ],
1149 [
1150 "The Prevention of Terrorism<br>Act 2002 (Pota) polarised the<br>country, not just by the<br>manner in which it was pushed<br>through by the NDA government<br>through a joint session of<br>Parliament but by the shabby<br>and often biased manner in<br>which it was enforced."
1151 ],
1152 [
1153 "The US military says marines<br>in Fallujah shot and killed an<br>insurgent who engaged them as<br>he was faking being dead, a<br>week after footage of a marine<br>killing an apparently unarmed<br>and wounded Iraqi caused a<br>stir in the region."
1154 ],
1155 [
1156 "Description: NPR #39;s Alex<br>Chadwick talks to Colin Brown,<br>deputy political editor for<br>the United Kingdom #39;s<br>Independent newspaper,<br>currently covering the British<br>Labour Party Conference."
1157 ],
1158 [
1159 "Hamas vowed revenge yesterday<br>after an Israeli airstrike in<br>Gaza killed one of its senior<br>commanders - the latest<br>assassination to have weakened<br>the militant group."
1160 ],
1161 [
1162 "A senior member of the<br>Palestinian resistance group<br>Hamas has been released from<br>an Israeli prison after<br>completing a two-year<br>sentence."
1163 ],
1164 [
1165 "MPs have announced a new<br>inquiry into family courts and<br>whether parents are treated<br>fairly over issues such as<br>custody or contact with their<br>children."
1166 ],
1167 [
1168 "Canadian Press - MELBOURNE,<br>Australia (AP) - A 36-year-old<br>businesswoman was believed to<br>be the first woman to walk<br>around Australia on Friday<br>after striding into her<br>hometown of Melbourne to<br>complete her 16,700-kilometre<br>trek in 365 days."
1169 ],
1170 [
1171 "Most remaining Pakistani<br>prisoners held at the US<br>Guantanamo Bay prison camp are<br>freed, officials say."
1172 ],
1173 [
1174 "French police are<br>investigating an arson-caused<br>fire at a Jewish Social Center<br>that might have killed dozens<br>without the quick response of<br>firefighters."
1175 ],
1176 [
1177 "Rodney King, whose videotaped<br>beating led to riots in Los<br>Angeles in 1992, is out of<br>jail now and talking frankly<br>for the first time about the<br>riots, himself and the<br>American way of life."
1178 ],
1179 [
1180 "AFP - Radical Islamic cleric<br>Abu Hamza al-Masri was set to<br>learn Thursday whether he<br>would be charged under<br>Britain's anti-terrorism law,<br>thus delaying his possible<br>extradition to the United<br>States to face terrorism-<br>related charges."
1181 ],
1182 [
1183 "Louisen Louis, 30, walked<br>Monday in the middle of a<br>street that resembled a small<br>river with brown rivulets and<br>waves. He wore sandals and had<br>a cut on one of his big toes."
1184 ],
1185 [
1186 "A car bomb exploded outside<br>the main hospital in Chechny<br>#39;s capital, Grozny, on<br>Sunday, injuring 17 people in<br>an attack apparently targeting<br>members of a Chechen security<br>force bringing in wounded from<br>an earlier explosion"
1187 ],
1188 [
1189 "AP - Gay marriage is emerging<br>as a big enough issue in<br>several states to influence<br>races both for Congress and<br>the presidency."
1190 ],
1191 [
1192 "More than 30 aid workers have<br>been airlifted to safety from<br>a town in Sudan #39;s troubled<br>Darfur region after fighting<br>broke out and their base was<br>bombed, a British charity<br>says."
1193 ],
1194 [
1195 "It #39;s the mildest of mild<br>winters down here in the south<br>of Italy and, last weekend at<br>Bcoli, a pretty suburb by the<br>seaside west of Naples, the<br>customers of Pizzeria quot;Da<br>Enrico quot; were making the<br>most of it."
1196 ],
1197 [
1198 "WASHINGTON - A spotty job<br>market and stagnant paychecks<br>cloud this Labor Day holiday<br>for many workers, highlighting<br>the importance of pocketbook<br>issues in the presidential<br>election. \"Working harder<br>and enjoying it less,\" said<br>economist Ken Mayland,<br>president of ClearView<br>Economics, summing up the<br>state of working America..."
1199 ],
1200 [
1201 "Canadian Press - MONTREAL (CP)<br>- A 19-year-old man charged in<br>a firebombing at a Jewish<br>elementary school pleaded<br>guilty Thursday to arson."
1202 ],
1203 [
1204 " quot;Resuming uranium<br>enrichment is not in our<br>agenda. We are still committed<br>to the suspension, quot;<br>Foreign Ministry spokesman<br>Hamid Reza."
1205 ],
1206 [
1207 "The U.S. military presence in<br>Iraq will grow to 150,000<br>troops by next month, the<br>highest level since the<br>invasion last year."
1208 ],
1209 [
1210 "UPDATE, SUN 9PM: More than a<br>million people have left their<br>homes in Cuba, as Hurricane<br>Ivan approaches. The ferocious<br>storm is headed that way,<br>after ripping through the<br>Cayman Islands, tearing off<br>roofs, flooding homes and<br>causing general havoc."
1211 ],
1212 [
1213 "German Chancellor Gerhard<br>Schroeder said Sunday that<br>there was quot;no problem<br>quot; with Germany #39;s<br>support to the start of<br>negotiations on Turkey #39;s<br>entrance into EU."
1214 ],
1215 [
1216 "MANILA Fernando Poe Jr., the<br>popular actor who challenged<br>President Gloria Macapagal<br>Arroyo in the presidential<br>elections this year, died<br>early Tuesday."
1217 ],
1218 [
1219 "AMSTERDAM, NETHERLANDS - A<br>Dutch filmmaker who outraged<br>members of the Muslim<br>community by making a film<br>critical of the mistreatment<br>of women in Islamic society<br>was gunned down and stabbed to<br>death Tuesday on an Amsterdam<br>street."
1220 ],
1221 [
1222 "Zimbabwe #39;s most persecuted<br>white MP began a year of hard<br>labour last night after<br>parliament voted to jail him<br>for shoving the Justice<br>Minister during a debate over<br>land seizures."
1223 ],
1224 [
1225 "A smashing blow is being dealt<br>to thousands of future<br>pensioners by a law that has<br>just been brought into force<br>by the Federal Government."
1226 ],
1227 [
1228 "AP - An Israeli helicopter<br>fired two missiles in Gaza<br>City after nightfall<br>Wednesday, one at a building<br>in the Zeitoun neighborhood,<br>witnesses said, setting a<br>fire."
1229 ],
1230 [
1231 "The Philippines put the toll<br>at more than 1,000 dead or<br>missing in four storms in two<br>weeks but, even with a break<br>in the weather on Saturday"
1232 ],
1233 [
1234 "Reuters - Four explosions were<br>reported at petrol\\stations in<br>the Madrid area on Friday,<br>Spanish radio stations\\said,<br>following a phone warning in<br>the name of the armed<br>Basque\\separatist group ETA to<br>a Basque newspaper."
1235 ],
1236 [
1237 "WEST PALM BEACH, Fla. -<br>Hurricane Jeanne got stronger,<br>bigger and faster as it<br>battered the Bahamas and bore<br>down on Florida Saturday,<br>sending huge waves crashing<br>onto beaches and forcing<br>thousands into shelters just<br>weeks after Frances ravaged<br>this area..."
1238 ],
1239 [
1240 "NEW YORK - Elena Dementieva<br>shook off a subpar serve that<br>produced 15 double-faults, an<br>aching left thigh and an upset<br>stomach to advance to the<br>semifinals at the U.S. Open<br>with a 4-6, 6-4, 7-6 (1)<br>victory Tuesday over Amelie<br>Mauresmo..."
1241 ],
1242 [
1243 "Prime Minister Dr Manmohan<br>Singh inaugurated a research<br>centre in the Capital on<br>Thursday to mark 400 years of<br>compilation of Sikh holy book<br>the Guru Granth Sahib."
1244 ],
1245 [
1246 "THE re-election of British<br>Prime Minister Tony Blair<br>would be seen as an<br>endorsement of the military<br>action in Iraq, Prime Minister<br>John Howard said today."
1247 ],
1248 [
1249 "President George W. Bush<br>pledged Friday to spend some<br>of the political capital from<br>his re-election trying to<br>secure a lasting Middle East<br>peace, and he envisioned the<br>establishment"
1250 ],
1251 [
1252 "NEW DELHI - A bomb exploded<br>during an Independence Day<br>parade in India's remote<br>northeast on Sunday, killing<br>at least 15 people, officials<br>said, just an hour after Prime<br>Minister Manmohan Singh<br>pledged to fight terrorism.<br>The outlawed United Liberation<br>Front of Asom was suspected of<br>being behind the attack in<br>Assam state and a second one<br>later in the area, said Assam<br>Inspector General of Police<br>Khagen Sharma..."
1253 ],
1254 [
1255 "A UN envoy to Sudan will visit<br>Darfur tomorrow to check on<br>the government #39;s claim<br>that some 70,000 people<br>displaced by conflict there<br>have voluntarily returned to<br>their homes, a spokesman said."
1256 ],
1257 [
1258 "AP - Most of the presidential<br>election provisional ballots<br>rejected so far in Ohio came<br>from people who were not even<br>registered to vote, election<br>officials said after spending<br>nearly two weeks poring over<br>thousands of disputed votes."
1259 ],
1260 [
1261 "AP - Rival inmates fought each<br>other with knives and sticks<br>Wednesday at a San Salvador<br>prison, leaving at least 31<br>people dead and two dozen<br>injured, officials said."
1262 ],
1263 [
1264 "BAGHDAD - Two Egyptian<br>employees of a mobile phone<br>company were seized when<br>gunmen stormed into their<br>Baghdad office, the latest in<br>a series of kidnappings in the<br>country."
1265 ],
1266 [
1267 "BRISBANE, Australia - The body<br>of a whale resembling a giant<br>dolphin that washed up on an<br>eastern Australian beach has<br>intrigued local scientists,<br>who agreed Wednesday that it<br>is rare but are not sure just<br>how rare."
1268 ],
1269 [
1270 "President Bush aims to<br>highlight American drug-<br>fighting aid in Colombia and<br>boost a conservative Latin<br>American leader with a stop in<br>the Andean nation where<br>thousands of security forces<br>are deployed to safeguard his<br>brief stay."
1271 ],
1272 [
1273 "Dubai - Former Palestinian<br>security minister Mohammed<br>Dahlan said on Monday that a<br>quot;gang of mercenaries quot;<br>known to the Palestinian<br>police were behind the<br>shooting that resulted in two<br>deaths in a mourning tent for<br>Yasser Arafat in Gaza."
1274 ],
1275 [
1276 "A Frenchman working for Thales<br>SA, Europe #39;s biggest maker<br>of military electronics, was<br>shot dead while driving home<br>at night in the Saudi Arabian<br>city of Jeddah."
1277 ],
1278 [
1279 "China will take tough measures<br>this winter to improve the<br>country #39;s coal mine safety<br>and prevent accidents. State<br>Councilor Hua Jianmin said<br>Thursday the industry should<br>take"
1280 ],
1281 [
1282 "BAGHDAD (Iraq): As the<br>intensity of skirmishes<br>swelled on the soils of Iraq,<br>dozens of people were put to<br>death with toxic shots by the<br>US helicopter gunship, which<br>targeted the civilians,<br>milling around a burning<br>American vehicle in a Baghdad<br>street on"
1283 ],
1284 [
1285 "Reuters - A key Iranian<br>nuclear facility which<br>the\\U.N.'s nuclear watchdog<br>has urged Tehran to shut down<br>is\\nearing completion, a<br>senior Iranian nuclear<br>official said on\\Sunday."
1286 ],
1287 [
1288 "Spain's Football Federation<br>launches an investigation into<br>racist comments made by<br>national coach Luis Aragones."
1289 ],
1290 [
1291 "Bricks and plaster blew inward<br>from the wall, as the windows<br>all shattered and I fell to<br>the floorwhether from the<br>shock wave, or just fright, it<br>wasn #39;t clear."
1292 ],
1293 [
1294 "Surfersvillage Global Surf<br>News, 13 September 2004: - -<br>Hurricane Ivan, one of the<br>most powerful storms to ever<br>hit the Caribbean, killed at<br>least 16 people in Jamaica,<br>where it wrecked houses and<br>washed away roads on Saturday,<br>but appears to have spared"
1295 ],
1296 [
1297 "LONDON, England -- A US<br>scientist is reported to have<br>observed a surprising jump in<br>the amount of carbon dioxide,<br>the main greenhouse gas."
1298 ],
1299 [
1300 "Zimbabwe #39;s ruling Zanu-PF<br>old guard has emerged on top<br>after a bitter power struggle<br>in the deeply divided party<br>during its five-yearly<br>congress, which ended<br>yesterday."
1301 ],
1302 [
1303 "Reuters - Thousands of<br>demonstrators pressing<br>to\\install Ukraine's<br>opposition leader as president<br>after a\\disputed election<br>launched fresh street rallies<br>in the capital\\for the third<br>day Wednesday."
1304 ],
1305 [
1306 "Michael Jackson wishes he had<br>fought previous child<br>molestation claims instead of<br>trying to \"buy peace\", his<br>lawyer says."
1307 ],
1308 [
1309 "North Korea says it will not<br>abandon its weapons programme<br>after the South admitted<br>nuclear activities."
1310 ],
1311 [
1312 "While there is growing<br>attention to ongoing genocide<br>in Darfur, this has not<br>translated into either a<br>meaningful international<br>response or an accurate<br>rendering of the scale and<br>evident course of the<br>catastrophe."
1313 ],
1314 [
1315 "THE prosecution on terrorism<br>charges of extremist Islamic<br>cleric and accused Jemaah<br>Islamiah leader Abu Bakar<br>Bashir will rely heavily on<br>the potentially tainted<br>testimony of at least two<br>convicted Bali bombers, his<br>lawyers have said."
1316 ],
1317 [
1318 "Clashes between US troops and<br>Sadr militiamen escalated<br>Thursday, as the US surrounded<br>Najaf for possible siege."
1319 ],
1320 [
1321 "AFP - A battle group of<br>British troops rolled out of<br>southern Iraq on a US-<br>requested mission to deadlier<br>areas near Baghdad, in a major<br>political gamble for British<br>Prime Minister Tony Blair."
1322 ],
1323 [
1324 "over half the children in the<br>world - suffer extreme<br>deprivation because of war,<br>HIV/AIDS or poverty, according<br>to a report released yesterday<br>by the United Nations Children<br>#39;s Fund."
1325 ],
1326 [
1327 "Reuters - Philippine rescue<br>teams\\evacuated thousands of<br>people from the worst flooding<br>in the\\central Luzon region<br>since the 1970s as hungry<br>victims hunted\\rats and birds<br>for food."
1328 ],
1329 [
1330 "The Afghan president expresses<br>deep concern after a bomb<br>attack which left at least<br>seven people dead."
1331 ],
1332 [
1333 "Gardez (Afghanistan), Sept. 16<br>(Reuters): Afghan President<br>Hamid Karzai escaped an<br>assassination bid today when a<br>rocket was fired at his US<br>military helicopter as it was<br>landing in the southeastern<br>town of Gardez."
1334 ],
1335 [
1336 "The Jets came up with four<br>turnovers by Dolphins<br>quarterback Jay Fiedler in the<br>second half, including an<br>interception returned 66 yards<br>for a touchdown."
1337 ],
1338 [
1339 "DUBLIN -- Prime Minister<br>Bertie Ahern urged Irish<br>Republican Army commanders<br>yesterday to meet what he<br>acknowledged was ''a heavy<br>burden quot;: disarming and<br>disbanding their organization<br>in support of Northern<br>Ireland's 1998 peace accord."
1340 ],
1341 [
1342 "While reproductive planning<br>and women #39;s equality have<br>improved substantially over<br>the past decade, says a United<br>Nations report, world<br>population will increase from<br>6.4 billion today to 8.9<br>billion by 2050, with the 50<br>poorest countries tripling in"
1343 ],
1344 [
1345 "BAR's Anthony Davidson and<br>Jenson Button set the pace at<br>the first Chinese Grand Prix."
1346 ],
1347 [
1348 "WASHINGTON - Contradicting the<br>main argument for a war that<br>has cost more than 1,000<br>American lives, the top U.S.<br>arms inspector reported<br>Wednesday that he found no<br>evidence that Iraq produced<br>any weapons of mass<br>destruction after 1991..."
1349 ],
1350 [
1351 "AFP - Style mavens will be<br>scanning the catwalks in Paris<br>this week for next spring's<br>must-have handbag, as a<br>sweeping exhibition at the<br>French capital's fashion and<br>textile museum reveals the bag<br>in all its forms."
1352 ],
1353 [
1354 "Canadian Press - SAINT-<br>QUENTIN, N.B. (CP) - A major<br>highway in northern New<br>Brunswick remained closed to<br>almost all traffic Monday, as<br>local residents protested<br>planned health care cuts."
1355 ],
1356 [
1357 " NAJAF, Iraq (Reuters) - A<br>radical Iraqi cleric leading a<br>Shi'ite uprising agreed on<br>Wednesday to disarm his<br>militia and leave one of the<br>country's holiest Islamic<br>shrines after warnings of an<br>onslaught by government<br>forces."
1358 ],
1359 [
1360 "Saudi security forces have<br>killed a wanted militant near<br>the scene of a deadly shootout<br>Thursday. Officials say the<br>militant was killed in a<br>gunbattle Friday in the<br>northern town of Buraida,<br>hours after one"
1361 ],
1362 [
1363 "Two South Africans acquitted<br>by a Zimbabwean court of<br>charges related to the alleged<br>coup plot in Equatorial Guinea<br>are to be questioned today by<br>the South African authorities."
1364 ],
1365 [
1366 "MOSCOW (CP) - Russia mourned<br>89 victims of a double air<br>disaster today as debate<br>intensified over whether the<br>two passenger liners could<br>have plunged almost<br>simultaneously from the sky by<br>accident."
1367 ],
1368 [
1369 "Australia #39;s prime minister<br>says a body found in Fallujah<br>is likely that of kidnapped<br>aid worker Margaret Hassan.<br>John Howard told Parliament a<br>videotape of an Iraqi<br>terrorist group executing a<br>Western woman appears to have<br>been genuine."
1370 ],
1371 [
1372 "AP - Their first debate less<br>than a week away, President<br>Bush and Democrat John Kerry<br>kept their public schedules<br>clear on Saturday and began to<br>focus on their prime-time<br>showdown."
1373 ],
1374 [
1375 "PARIS Getting to the bottom of<br>what killed Yassar Arafat<br>could shape up to be an ugly<br>family tug-of-war. Arafat<br>#39;s half-brother and nephew<br>want copies of Arafat #39;s<br>medical records from the<br>suburban Paris hospital"
1376 ],
1377 [
1378 " THE HAGUE (Reuters) - Former<br>Yugoslav President Slobodan<br>Milosevic condemned his war<br>crimes trial as a \"pure farce\"<br>on Wednesday in a defiant<br>finish to his opening defense<br>statement against charges of<br>ethnic cleansing in the<br>Balkans."
1379 ],
1380 [
1381 " GUWAHATI, India (Reuters) -<br>People braved a steady drizzle<br>to come out to vote in a<br>remote northeast Indian state<br>on Thursday, as troops<br>guarded polling stations in an<br>election being held under the<br>shadow of violence."
1382 ],
1383 [
1384 "AFP - Three of the nine<br>Canadian sailors injured when<br>their newly-delivered,<br>British-built submarine caught<br>fire in the North Atlantic<br>were airlifted Wednesday to<br>hospital in northwest Ireland,<br>officials said."
1385 ],
1386 [
1387 "BAGHDAD, Iraq - A series of<br>strong explosions shook<br>central Baghdad near dawn<br>Sunday, and columns of thick<br>black smoke rose from the<br>Green Zone where U.S. and<br>Iraqi government offices are<br>located..."
1388 ],
1389 [
1390 "Sven-Goran Eriksson may gamble<br>by playing goalkeeper Paul<br>Robinson and striker Jermain<br>Defoe in Poland."
1391 ],
1392 [
1393 "Foreign Secretary Jack Straw<br>has flown to Khartoum on a<br>mission to pile the pressure<br>on the Sudanese government to<br>tackle the humanitarian<br>catastrophe in Darfur."
1394 ],
1395 [
1396 "Reuters - A senior U.S.<br>official said on<br>Wednesday\\deals should not be<br>done with hostage-takers ahead<br>of the\\latest deadline set by<br>Afghan Islamic militants who<br>have\\threatened to kill three<br>kidnapped U.N. workers."
1397 ],
1398 [
1399 "Sinn Fein leader Gerry Adams<br>has put the pressure for the<br>success or failure of the<br>Northern Ireland assembly<br>talks firmly on the shoulders<br>of Ian Paisley."
1400 ],
1401 [
1402 " JAKARTA (Reuters) - President<br>Megawati Sukarnoputri urged<br>Indonesians on Thursday to<br>accept the results of the<br>country's first direct<br>election of a leader, but<br>stopped short of conceding<br>defeat."
1403 ],
1404 [
1405 "ISLAMABAD: Pakistan early<br>Monday test-fired its<br>indigenously developed short-<br>range nuclear-capable Ghaznavi<br>missile, the Inter Services<br>Public Relations (ISPR) said<br>in a statement."
1406 ],
1407 [
1408 "The trial of a man accused of<br>murdering York backpacker<br>Caroline Stuttle begins in<br>Australia."
1409 ],
1410 [
1411 "BRUSSELS: The EU sought<br>Wednesday to keep pressure on<br>Turkey over its bid to start<br>talks on joining the bloc, as<br>last-minute haggling seemed<br>set to go down to the wire at<br>a summit poised to give a<br>green light to Ankara."
1412 ],
1413 [
1414 "AP - J. Cofer Black, the State<br>Department official in charge<br>of counterterrorism, is<br>leaving government in the next<br>few weeks."
1415 ],
1416 [
1417 "AFP - The United States<br>presented a draft UN<br>resolution that steps up the<br>pressure on Sudan over the<br>crisis in Darfur, including<br>possible international<br>sanctions against its oil<br>sector."
1418 ],
1419 [
1420 "AFP - At least 33 people were<br>killed and dozens others<br>wounded when two bombs ripped<br>through a congregation of<br>Sunni Muslims in Pakistan's<br>central city of Multan, police<br>said."
1421 ],
1422 [
1423 "AFP - A series of torchlight<br>rallies and vigils were held<br>after darkness fell on this<br>central Indian city as victims<br>and activists jointly<br>commemorated a night of horror<br>20 years ago when lethal gas<br>leaked from a pesticide plant<br>and killed thousands."
1424 ],
1425 [
1426 "A Zimbabwe court Friday<br>convicted a British man<br>accused of leading a coup plot<br>against the government of oil-<br>rich Equatorial Guinea on<br>weapons charges, but acquitted<br>most of the 69 other men held<br>with him."
1427 ],
1428 [
1429 "Canadian Press - TORONTO (CP)<br>- The fatal stabbing of a<br>young man trying to eject<br>unwanted party guests from his<br>family home, the third such<br>knifing in just weeks, has<br>police worried about a<br>potentially fatal holiday<br>recipe: teens, alcohol and<br>knives."
1430 ],
1431 [
1432 "MOSCOW - A female suicide<br>bomber set off a shrapnel-<br>filled explosive device<br>outside a busy Moscow subway<br>station on Tuesday night,<br>officials said, killing 10<br>people and injuring more than<br>50."
1433 ],
1434 [
1435 "ABIDJAN (AFP) - Two Ivory<br>Coast military aircraft<br>carried out a second raid on<br>Bouake, the stronghold of the<br>former rebel New Forces (FN)<br>in the divided west African<br>country, a French military<br>source told AFP."
1436 ],
1437 [
1438 "AFP - A state of civil<br>emergency in the rebellion-hit<br>Indonesian province of Aceh<br>has been formally extended by<br>six month, as the country's<br>president pledged to end<br>violence there without foreign<br>help."
1439 ],
1440 [
1441 "US Secretary of State Colin<br>Powell on Monday said he had<br>spoken to both Indian Foreign<br>Minister K Natwar Singh and<br>his Pakistani counterpart<br>Khurshid Mahmud Kasuri late<br>last week before the two met<br>in New Delhi this week for<br>talks."
1442 ],
1443 [
1444 "NEW YORK - Victor Diaz hit a<br>tying, three-run homer with<br>two outs in the ninth inning,<br>and Craig Brazell's first<br>major league home run in the<br>11th gave the New York Mets a<br>stunning 4-3 victory over the<br>Chicago Cubs on Saturday.<br>The Cubs had much on the<br>line..."
1445 ],
1446 [
1447 "AFP - At least 54 people have<br>died and more than a million<br>have fled their homes as<br>torrential rains lashed parts<br>of India and Bangladesh,<br>officials said."
1448 ],
1449 [
1450 "LOS ANGELES - California has<br>adopted the world's first<br>rules to reduce greenhouse<br>emissions for autos, taking<br>what supporters see as a<br>dramatic step toward cleaning<br>up the environment but also<br>ensuring higher costs for<br>drivers. The rules may lead<br>to sweeping changes in<br>vehicles nationwide,<br>especially if other states opt<br>to follow California's<br>example..."
1451 ],
1452 [
1453 "AFP - Republican and<br>Democratic leaders each<br>declared victory after the<br>first head-to-head sparring<br>match between President George<br>W. Bush and Democratic<br>presidential hopeful John<br>Kerry."
1454 ],
1455 [
1456 "Last night in New York, the UN<br>secretary-general was given a<br>standing ovation - a robust<br>response to a series of<br>attacks in past weeks."
1457 ],
1458 [
1459 "JOHANNESBURG -- Meeting in<br>Nigeria four years ago,<br>African leaders set a goal<br>that 60 percent of children<br>and pregnant women in malaria-<br>affected areas around the<br>continent would be sleeping<br>under bed nets by the end of<br>2005."
1460 ],
1461 [
1462 "AP - Duke Bainum outspent Mufi<br>Hannemann in Honolulu's most<br>expensive mayoral race, but<br>apparently failed to garner<br>enough votes in Saturday's<br>primary to claim the office<br>outright."
1463 ],
1464 [
1465 "POLITICIANS and aid agencies<br>yesterday stressed the<br>importance of the media in<br>keeping the spotlight on the<br>appalling human rights abuses<br>taking place in the Darfur<br>region of Sudan."
1466 ],
1467 [
1468 "\\Children who have a poor diet<br>are more likely to become<br>aggressive and anti-social, US<br>researchers believe."
1469 ],
1470 [
1471 "Canadian Press - OTTAWA (CP) -<br>Contrary to Immigration<br>Department claims, there is no<br>shortage of native-borne<br>exotic dancers in Canada, says<br>a University of Toronto law<br>professor who has studied the<br>strip club business."
1472 ],
1473 [
1474 "The European Union presidency<br>yesterday expressed optimism<br>that a deal could be struck<br>over Turkey #39;s refusal to<br>recognize Cyprus in the lead-<br>up to next weekend #39;s EU<br>summit, which will decide<br>whether to give Ankara a date<br>for the start of accession<br>talks."
1475 ],
1476 [
1477 " WASHINGTON (Reuters) -<br>President Bush on Friday set a<br>four-year goal of seeing a<br>Palestinian state established<br>and he and British Prime<br>Minister Tony Blair vowed to<br>mobilize international<br>support to help make it happen<br>now that Yasser Arafat is<br>dead."
1478 ],
1479 [
1480 " KHARTOUM (Reuters) - Sudan on<br>Saturday questioned U.N.<br>estimates that up to 70,000<br>people have died from hunger<br>and disease in its remote<br>Darfur region since a<br>rebellion began 20 months<br>ago."
1481 ],
1482 [
1483 "AFP - At least four Georgian<br>soldiers were killed and five<br>wounded in overnight clashes<br>in Georgia's separatist, pro-<br>Russian region of South<br>Ossetia, Georgian officers<br>near the frontline with<br>Ossetian forces said early<br>Thursday."
1484 ],
1485 [
1486 "The European Commission is<br>expected later this week to<br>recommend EU membership talks<br>with Turkey. Meanwhile, German<br>Chancellor Gerhard Schroeder<br>and Turkish Prime Minister<br>Tayyip Erdogan are<br>anticipating a quot;positive<br>report."
1487 ],
1488 [
1489 "The Canadian government<br>signalled its intention<br>yesterday to reintroduce<br>legislation to decriminalise<br>the possession of small<br>amounts of marijuana."
1490 ],
1491 [
1492 "A screensaver targeting spam-<br>related websites appears to<br>have been too successful."
1493 ],
1494 [
1495 " ABIDJAN (Reuters) - Ivory<br>Coast warplanes killed nine<br>French soldiers on Saturday in<br>a bombing raid during the<br>fiercest clashes with rebels<br>for 18 months and France hit<br>back by destroying most of<br>the West African country's<br>small airforce."
1496 ],
1497 [
1498 "GAZA CITY, Gaza Strip --<br>Islamic militant groups behind<br>many suicide bombings<br>dismissed yesterday a call<br>from Mahmoud Abbas, the<br>interim Palestinian leader, to<br>halt attacks in the run-up to<br>a Jan. 9 election to replace<br>Yasser Arafat."
1499 ],
1500 [
1501 "Secretary of State Colin<br>Powell is wrapping up an East<br>Asia trip focused on prodding<br>North Korea to resume talks<br>aimed at ending its nuclear-<br>weapons program."
1502 ],
1503 [
1504 "The risk of intestinal damage<br>from common painkillers may be<br>higher than thought, research<br>suggests."
1505 ],
1506 [
1507 "AN earthquake measuring 7.3 on<br>the Richter Scale hit western<br>Japan this morning, just hours<br>after another strong quake<br>rocked the area."
1508 ],
1509 [
1510 "Britain #39;s Prince Harry,<br>struggling to shed a growing<br>quot;wild child quot; image,<br>won #39;t apologize to a<br>photographer he scuffled with<br>outside an exclusive London<br>nightclub, a royal spokesman<br>said on Saturday."
1511 ],
1512 [
1513 "Pakistan #39;s interim Prime<br>Minister Chaudhry Shaujaat<br>Hussain has announced his<br>resignation, paving the way<br>for his successor Shauket<br>Aziz."
1514 ],
1515 [
1516 "A previously unknown group<br>calling itself Jamaat Ansar<br>al-Jihad al-Islamiya says it<br>set fire to a Jewish soup<br>kitchen in Paris, according to<br>an Internet statement."
1517 ],
1518 [
1519 "The deadliest attack on<br>Americans in Iraq since May<br>came as Iraqi officials<br>announced that Saddam<br>Hussein's deputy had not been<br>captured on Sunday."
1520 ],
1521 [
1522 "A fundraising concert will be<br>held in London in memory of<br>the hundreds of victims of the<br>Beslan school siege."
1523 ],
1524 [
1525 "AFP - The landmark trial of a<br>Rwandan Roman Catholic priest<br>accused of supervising the<br>massacre of 2,000 of his Tutsi<br>parishioners during the<br>central African country's 1994<br>genocide opens at a UN court<br>in Tanzania."
1526 ],
1527 [
1528 "The Irish government has<br>stepped up its efforts to free<br>the British hostage in Iraq,<br>Ken Bigley, whose mother is<br>from Ireland, by talking to<br>diplomats from Iran and<br>Jordan."
1529 ],
1530 [
1531 "AP - Republican Sen. Lincoln<br>Chafee, who flirted with<br>changing political parties in<br>the wake of President Bush's<br>re-election victory, says he<br>will stay in the GOP."
1532 ],
1533 [
1534 "South Korean President Roh<br>Moo-hyun pays a surprise visit<br>to troops in Iraq, after his<br>government decided to extend<br>their mandate."
1535 ],
1536 [
1537 "As the European Union<br>approaches a contentious<br>decision - whether to let<br>Turkey join the club - the<br>Continent #39;s rulers seem to<br>have left their citizens<br>behind."
1538 ],
1539 [
1540 " BAGHDAD (Reuters) - A<br>deadline set by militants who<br>have threatened to kill two<br>Americans and a Briton seized<br>in Iraq was due to expire<br>Monday, and more than two<br>dozen other hostages were<br>also facing death unless rebel<br>demands were met."
1541 ],
1542 [
1543 "Some Venezuelan television<br>channels began altering their<br>programs Thursday, citing<br>fears of penalties under a new<br>law restricting violence and<br>sexual content over the<br>airwaves."
1544 ],
1545 [
1546 "afrol News, 4 October -<br>Hundred years of conservation<br>efforts have lifted the<br>southern black rhino<br>population from about hundred<br>to 11,000 animals."
1547 ],
1548 [
1549 "THE death of Philippine movie<br>star and defeated presidential<br>candidate Fernando Poe has<br>drawn some political backlash,<br>with some people seeking to<br>use his sudden demise as a<br>platform to attack President<br>Gloria Arroyo."
1550 ],
1551 [
1552 "VIENTIANE, Laos China moved<br>yet another step closer in<br>cementing its economic and<br>diplomatic relationships with<br>Southeast Asia today when<br>Prime Minister Wen Jiabao<br>signed a trade accord at a<br>regional summit that calls for<br>zero tariffs on a wide range<br>of"
1553 ],
1554 [
1555 "British judges in London<br>Tuesday ordered radical Muslim<br>imam Abu Hamza to stand trial<br>for soliciting murder and<br>inciting racial hatred."
1556 ],
1557 [
1558 "SARASOTA, Fla. - The<br>devastation brought on by<br>Hurricane Charley has been<br>especially painful for an<br>elderly population that is<br>among the largest in the<br>nation..."
1559 ],
1560 [
1561 " quot;He is charged for having<br>a part in the Bali incident,<br>quot; state prosecutor Andi<br>Herman told Reuters on<br>Saturday. bombing attack at<br>the US-run JW."
1562 ],
1563 [
1564 "The United Nations called on<br>Monday for an immediate<br>ceasefire in eastern Congo as<br>fighting between rival army<br>factions flared for a third<br>day."
1565 ],
1566 [
1567 "Allowing dozens of casinos to<br>be built in the UK would bring<br>investment and thousands of<br>jobs, Tony Blair says."
1568 ],
1569 [
1570 "The shock here was not just<br>from the awful fact itself,<br>that two vibrant young Italian<br>women were kidnapped in Iraq,<br>dragged from their office by<br>attackers who, it seems, knew<br>their names."
1571 ],
1572 [
1573 "Tehran/Vianna, Sept. 19 (NNN):<br>Iran on Sunday rejected the<br>International Atomic Energy<br>Agency (IAEA) call to suspend<br>of all its nuclear activities,<br>saying that it will not agree<br>to halt uranium enrichment."
1574 ],
1575 [
1576 "A 15-year-old Argentine<br>student opened fire at his<br>classmates on Tuesday in a<br>middle school in the south of<br>the Buenos Aires province,<br>leaving at least four dead and<br>five others wounded, police<br>said."
1577 ],
1578 [
1579 "NEW YORK - A cable pay-per-<br>view company has decided not<br>to show a three-hour election<br>eve special with filmmaker<br>Michael Moore that included a<br>showing of his documentary<br>\"Fahrenheit 9/11,\" which is<br>sharply critical of President<br>Bush. The company, iN<br>DEMAND, said Friday that its<br>decision is due to \"legitimate<br>business and legal concerns.\"<br>A spokesman would not<br>elaborate..."
1580 ],
1581 [
1582 "Democracy candidates picked up<br>at least one more seat in<br>parliament, according to exit<br>polls."
1583 ],
1584 [
1585 "The IOC wants suspended<br>Olympic member Ivan Slavkov to<br>be thrown out of the<br>organisation."
1586 ],
1587 [
1588 " BANGKOK (Reuters) - The<br>ouster of Myanmar's prime<br>minister, architect of a<br>tentative \"roadmap to<br>democracy,\" has dashed faint<br>hopes for an end to military<br>rule and leaves Southeast<br>Asia's policy of constructive<br>engagement in tatters."
1589 ],
1590 [
1591 "The anguish of hostage Kenneth<br>Bigley in Iraq hangs over<br>Prime Minister Tony Blair<br>today as he faces the twin<br>test of a local election and a<br>debate by his Labour Party<br>about the divisive war."
1592 ],
1593 [
1594 " quot;There were 16 people<br>travelling aboard. ... It<br>crashed into a mountain, quot;<br>Col. Antonio Rivero, head of<br>the Civil Protection service,<br>told."
1595 ],
1596 [
1597 "President Bush is reveling in<br>winning the popular vote and<br>feels he can no longer be<br>considered a one-term accident<br>of history."
1598 ],
1599 [
1600 "Canadian Press - TORONTO (CP)<br>- Thousands of Royal Bank<br>clerks are being asked to<br>display rainbow stickers at<br>their desks and cubicles to<br>promote a safe work<br>environment for gays,<br>lesbians, and bisexuals."
1601 ],
1602 [
1603 " BAGHDAD (Reuters) - A car<br>bomb killed two American<br>soldiers and wounded eight<br>when it exploded in Baghdad on<br>Saturday, the U.S. military<br>said in a statement."
1604 ],
1605 [
1606 "Sudanese authorities have<br>moved hundreds of pro-<br>government fighters from the<br>crisis-torn Darfur region to<br>other parts of the country to<br>keep them out of sight of<br>foreign military observers<br>demanding the militia #39;s<br>disarmament, a rebel leader<br>charged"
1607 ],
1608 [
1609 "BAGHDAD, Iraq - A car bomb<br>Tuesday ripped through a busy<br>market near a Baghdad police<br>headquarters where Iraqis were<br>waiting to apply for jobs on<br>the force, and gunmen opened<br>fire on a van carrying police<br>home from work in Baqouba,<br>killing at least 59 people<br>total and wounding at least<br>114. The attacks were the<br>latest attempts by militants<br>to wreck the building of a<br>strong Iraqi security force, a<br>keystone of the U.S..."
1610 ],
1611 [
1612 "The Israeli prime minister<br>said today that he wanted to<br>begin withdrawing settlers<br>from Gaza next May or June."
1613 ],
1614 [
1615 "Queen Elizabeth II stopped<br>short of apologizing for the<br>Allies #39; bombing of Dresden<br>during her first state visit<br>to Germany in 12 years and<br>instead acknowledged quot;the<br>appalling suffering of war on<br>both sides."
1616 ],
1617 [
1618 "AP - Fugitive Taliban leader<br>Mullah Mohammed Omar has<br>fallen out with some of his<br>lieutenants, who blame him for<br>the rebels' failure to disrupt<br>the landmark Afghan<br>presidential election, the<br>U.S. military said Wednesday."
1619 ],
1620 [
1621 "HAVANA -- Cuban President<br>Fidel Castro's advancing age<br>-- and ultimately his<br>mortality -- were brought home<br>yesterday, a day after he<br>fractured a knee and arm when<br>he tripped and fell at a<br>public event."
1622 ],
1623 [
1624 " BRASILIA, Brazil (Reuters) -<br>The United States and Brazil<br>predicted on Tuesday Latin<br>America's largest country<br>would resolve a dispute with<br>the U.N. nuclear watchdog over<br>inspections of a uranium<br>enrichment plant."
1625 ],
1626 [
1627 "Two bombs exploded today near<br>a tea shop and wounded 20<br>people in southern Thailand,<br>police said, as violence<br>continued unabated in the<br>Muslim-majority region where<br>residents are seething over<br>the deaths of 78 detainees<br>while in military custody."
1628 ],
1629 [
1630 "Prime Minister Junichiro<br>Koizumi, back in Tokyo after<br>an 11-day diplomatic mission<br>to the Americas, hunkered down<br>with senior ruling party<br>officials on Friday to focus<br>on a major reshuffle of<br>cabinet and top party posts."
1631 ],
1632 [
1633 "NEW YORK - A sluggish gross<br>domestic product reading was<br>nonetheless better than<br>expected, prompting investors<br>to send stocks slightly higher<br>Friday on hopes that the<br>economic slowdown would not be<br>as bad as first thought.<br>The 2.8 percent GDP growth in<br>the second quarter, a revision<br>from the 3 percent preliminary<br>figure reported in July, is a<br>far cry from the 4.5 percent<br>growth in the first quarter..."
1634 ],
1635 [
1636 " SEOUL (Reuters) - A huge<br>explosion in North Korea last<br>week may have been due to a<br>combination of demolition work<br>for a power plant and<br>atmospheric clouds, South<br>Korea's spy agency said on<br>Wednesday."
1637 ],
1638 [
1639 "AP - Sudan's U.N. ambassador<br>challenged the United States<br>to send troops to the Darfur<br>region if it really believes a<br>genocide is taking place as<br>the U.S. Congress and<br>President Bush's<br>administration have<br>determined."
1640 ],
1641 [
1642 "AFP - A junior British<br>minister said that people<br>living in camps after fleeing<br>their villages because of<br>conflict in Sudan's Darfur<br>region lived in fear of<br>leaving their temporary homes<br>despite a greater presence now<br>of aid workers."
1643 ],
1644 [
1645 "US Deputy Secretary of State<br>Richard Armitage (L) shakes<br>hands with Pakistani Foreign<br>Minister Khurshid Kasuri prior<br>to their meeting in Islamabad,<br>09 November 2004."
1646 ],
1647 [
1648 "AP - Democrat John Edwards<br>kept up a long-distance debate<br>over his \"two Americas\"<br>campaign theme with Vice<br>President Dick Cheney on<br>Tuesday, saying it was no<br>illusion to thousands of laid-<br>off workers in Ohio."
1649 ],
1650 [
1651 "A group of 76 Eritreans on a<br>repatriation flight from Libya<br>Friday forced their plane to<br>change course and land in the<br>Sudanese capital, Khartoum,<br>where they"
1652 ],
1653 [
1654 "AP - They say that opposites<br>attract, and in the case of<br>Sen. John Kerry and Teresa<br>Heinz Kerry, that may be true<br>#151; at least in their public<br>personas."
1655 ],
1656 [
1657 "AP - Impoverished North Korea<br>might resort to selling<br>weapons-grade plutonium to<br>terrorists for much-needed<br>cash, and that would be<br>\"disastrous for the world,\"<br>the top U.S. military<br>commander in South Korea said<br>Friday."
1658 ],
1659 [
1660 "Dubai: Osama bin Laden on<br>Thursday called on his<br>fighters to strike Gulf oil<br>supplies and warned Saudi<br>leaders they risked a popular<br>uprising in an audio message<br>said to be by the Western<br>world #39;s most wanted terror<br>mastermind."
1661 ],
1662 [
1663 "BEIJING -- Chinese authorities<br>have arrested or reprimanded<br>more than 750 officials in<br>recent months in connection<br>with billions of dollars in<br>financial irregularities<br>ranging from unpaid taxes to<br>embezzlement, according to a<br>report made public yesterday."
1664 ],
1665 [
1666 "Canadian Press - GAUHATI,<br>India (AP) - Residents of<br>northeastern India were<br>bracing for more violence<br>Friday, a day after bombs<br>ripped through two buses and a<br>grenade was hurled into a<br>crowded market in attacks that<br>killed four people and wounded<br>54."
1667 ],
1668 [
1669 "Some 28 people are charged<br>with trying to overthrow<br>Sudan's President Bashir,<br>reports say."
1670 ],
1671 [
1672 "Hong Kong #39;s Beijing-backed<br>chief executive yesterday<br>ruled out any early moves to<br>pass a controversial national<br>security law which last year<br>sparked a street protest by<br>half a million people."
1673 ],
1674 [
1675 "Beer consumption has doubled<br>over the past five years,<br>prompting legislators to<br>implement new rules."
1676 ],
1677 [
1678 "At least 79 people were killed<br>and 74 were missing after some<br>of the worst rainstorms in<br>recent years triggered<br>landslides and flash floods in<br>southwest China, disaster<br>relief officials said<br>yesterday."
1679 ],
1680 [
1681 "BANGKOK Thai military aircraft<br>dropped 100 million paper<br>birds over southern Thailand<br>on Sunday in a gesture<br>intended to promote peace in<br>mainly Muslim provinces, where<br>more than 500 people have died<br>this year in attacks by<br>separatist militants and"
1682 ],
1683 [
1684 "Insurgents threatened on<br>Saturday to cut the throats of<br>two Americans and a Briton<br>seized in Baghdad, and<br>launched a suicide car bomb<br>attack on Iraqi security<br>forces in Kirkuk that killed<br>at least 23 people."
1685 ],
1686 [
1687 " BEIJING (Reuters) - Secretary<br>of State Colin Powell will<br>urge China Monday to exert its<br>influence over North Korea to<br>resume six-party negotiations<br>on scrapping its suspected<br>nuclear weapons program."
1688 ],
1689 [
1690 "Reuters - An Israeli missile<br>strike killed at least\\two<br>Hamas gunmen in Gaza City<br>Monday, a day after a<br>top\\commander of the Islamic<br>militant group was killed in a<br>similar\\attack, Palestinian<br>witnesses and security sources<br>said."
1691 ],
1692 [
1693 "AP - The Pentagon has restored<br>access to a Web site that<br>assists soldiers and other<br>Americans living overseas in<br>voting, after receiving<br>complaints that its security<br>measures were preventing<br>legitimate voters from using<br>it."
1694 ],
1695 [
1696 "Montreal - The British-built<br>Canadian submarine HMCS<br>Chicoutimi, crippled since a<br>fire at sea that killed one of<br>its crew, is under tow and is<br>expected in Faslane, Scotland,<br>early next week, Canadian<br>naval commander Tyrone Pile<br>said on Friday."
1697 ],
1698 [
1699 "Thirty-five Pakistanis freed<br>from the US Guantanamo Bay<br>prison camp arrived home on<br>Saturday and were taken<br>straight to prison for further<br>interrogation, the interior<br>minister said."
1700 ],
1701 [
1702 "Witnesses in the trial of a US<br>soldier charged with abusing<br>prisoners at Abu Ghraib have<br>told the court that the CIA<br>sometimes directed abuse and<br>orders were received from<br>military command to toughen<br>interrogations."
1703 ],
1704 [
1705 "AP - Italian and Lebanese<br>authorities have arrested 10<br>suspected terrorists who<br>planned to blow up the Italian<br>Embassy in Beirut, an Italian<br>news agency and the Defense<br>Ministry said Tuesday."
1706 ],
1707 [
1708 "CORAL GABLES, Fla. -- John F.<br>Kerry and President Bush<br>clashed sharply over the war<br>in Iraq last night during the<br>first debate of the<br>presidential campaign season,<br>with the senator from<br>Massachusetts accusing"
1709 ],
1710 [
1711 "GONAIVES, Haiti -- While<br>desperately hungry flood<br>victims wander the streets of<br>Gonaives searching for help,<br>tons of food aid is stacking<br>up in a warehouse guarded by<br>United Nations peacekeepers."
1712 ],
1713 [
1714 "AFP - The resignation of<br>disgraced Fiji Vice-President<br>Ratu Jope Seniloli failed to<br>quell anger among opposition<br>leaders and the military over<br>his surprise release from<br>prison after serving just<br>three months of a four-year<br>jail term for his role in a<br>failed 2000 coup."
1715 ],
1716 [
1717 "Sourav Ganguly files an appeal<br>against a two-match ban<br>imposed for time-wasting."
1718 ],
1719 [
1720 "Greek police surrounded a bus<br>full of passengers seized by<br>armed hijackers along a<br>highway from an Athens suburb<br>Wednesday, police said."
1721 ],
1722 [
1723 "BAGHDAD: A suicide car bomber<br>attacked a police convoy in<br>Baghdad yesterday as guerillas<br>kept pressure on Iraq #39;s<br>security forces despite a<br>bloody rout of insurgents in<br>Fallujah."
1724 ],
1725 [
1726 "Fixtures and fittings from<br>Damien Hirst's restaurant<br>Pharmacy sell for 11.1, 8m<br>more than expected."
1727 ],
1728 [
1729 "Five years after catastrophic<br>floods and mudslides killed<br>thousands along Venezuela's<br>Caribbean coast, survivors in<br>this town still see the signs<br>of destruction - shattered<br>concrete walls and tall weeds<br>growing atop streets covered<br>in dried mud."
1730 ],
1731 [
1732 "The UN nuclear watchdog<br>confirmed Monday that nearly<br>400 tons of powerful<br>explosives that could be used<br>in conventional or nuclear<br>missiles disappeared from an<br>unguarded military<br>installation in Iraq."
1733 ],
1734 [
1735 "Militants in Iraq have killed<br>the second of two US civilians<br>they were holding hostage,<br>according to a statement on an<br>Islamist website."
1736 ],
1737 [
1738 "More than 4,000 American and<br>Iraqi soldiers mounted a<br>military assault on the<br>insurgent-held city of<br>Samarra."
1739 ],
1740 [
1741 " MEXICO CITY (Reuters) -<br>Mexican President Vicente Fox<br>said on Monday he hoped<br>President Bush's re-election<br>meant a bilateral accord on<br>migration would be reached<br>before his own term runs out<br>at the end of 2006."
1742 ],
1743 [
1744 " BRUSSELS (Reuters) - French<br>President Jacques Chirac said<br>on Friday he had not refused<br>to meet Iraqi interim Prime<br>Minister Iyad Allawi after<br>reports he was snubbing the<br>Iraqi leader by leaving an EU<br>meeting in Brussels early."
1745 ],
1746 [
1747 "NEW YORK - Former President<br>Bill Clinton was in good<br>spirits Saturday, walking<br>around his hospital room in<br>street clothes and buoyed by<br>thousands of get-well messages<br>as he awaited heart bypass<br>surgery early this coming<br>week, people close to the<br>family said. Clinton was<br>expected to undergo surgery as<br>early as Monday but probably<br>Tuesday, said Democratic Party<br>Chairman Terry McAuliffe, who<br>said the former president was<br>\"upbeat\" when he spoke to him<br>by phone Friday..."
1748 ],
1749 [
1750 "Poland will cut its troops in<br>Iraq early next year and won<br>#39;t stay in the country<br>quot;an hour longer quot; than<br>needed, the country #39;s<br>prime minister said Friday."
1751 ],
1752 [
1753 "A car bomb exploded at a US<br>military convoy in the<br>northern Iraqi city of Mosul,<br>causing several casualties,<br>the army and Iraqi officials<br>said."
1754 ],
1755 [
1756 "ATHENS, Greece - Michael<br>Phelps took care of qualifying<br>for the Olympic 200-meter<br>freestyle semifinals Sunday,<br>and then found out he had been<br>added to the American team for<br>the evening's 400 freestyle<br>relay final. Phelps' rivals<br>Ian Thorpe and Pieter van den<br>Hoogenband and teammate Klete<br>Keller were faster than the<br>teenager in the 200 free<br>preliminaries..."
1757 ],
1758 [
1759 " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>intends to present a timetable<br>for withdrawal from Gaza to<br>lawmakers from his Likud Party<br>Tuesday despite a mutiny in<br>the right-wing bloc over the<br>plan."
1760 ],
1761 [
1762 " KABUL (Reuters) - Three U.N.<br>workers held by militants in<br>Afghanistan were in their<br>third week of captivity on<br>Friday after calls from both<br>sides for the crisis to be<br>resolved ahead of this<br>weekend's Muslim festival of<br>Eid al-Fitr."
1763 ],
1764 [
1765 "ROME, Oct 29 (AFP) - French<br>President Jacques Chirac urged<br>the head of the incoming<br>European Commission Friday to<br>take quot;the appropriate<br>decisions quot; to resolve a<br>row over his EU executive team<br>which has left the EU in<br>limbo."
1766 ],
1767 [
1768 "Russia's parliament will<br>launch an inquiry into a<br>school siege that killed over<br>300 hostages, President<br>Vladimir Putin said on Friday,<br>but analysts doubt it will<br>satisfy those who blame the<br>carnage on security services."
1769 ],
1770 [
1771 "Tony Blair talks to business<br>leaders about new proposals<br>for a major shake-up of the<br>English exam system."
1772 ],
1773 [
1774 "KUALA LUMPUR, Malaysia A<br>Malaysian woman has claimed a<br>new world record after living<br>with over six-thousand<br>scorpions for 36 days<br>straight."
1775 ],
1776 [
1777 "could take drastic steps if<br>the talks did not proceed as<br>Tehran wants. Mehr news agency<br>quoted him as saying on<br>Wednesday. that could be used"
1778 ],
1779 [
1780 "Israeli authorities have<br>launched an investigation into<br>death threats against Israeli<br>Prime Minister Ariel Sharon<br>and other officials supporting<br>his disengagement plan from<br>Gaza and parts of the West<br>Bank, Jerusalem police said<br>Tuesday."
1781 ],
1782 [
1783 "It was a carefully scripted<br>moment when Russian President<br>Vladimir Putin began quoting<br>Taras Shevchenko, this country<br>#39;s 19th-century bard,<br>during a live television"
1784 ],
1785 [
1786 "China says it welcomes Russia<br>#39;s ratification of the<br>Kyoto Protocol that aims to<br>stem global warming by<br>reducing greenhouse-gas<br>emissions."
1787 ],
1788 [
1789 "The Metropolitan<br>Transportation Authority is<br>proposing a tax increase to<br>raise \\$900 million a year to<br>help pay for a five-year<br>rebuilding program."
1790 ],
1791 [
1792 "AFP - The Canadian armed<br>forces chief of staff on was<br>elected to take over as head<br>of NATO's Military Committee,<br>the alliance's highest<br>military authority, military<br>and diplomatic sources said."
1793 ],
1794 [
1795 "AFP - Two proposed resolutions<br>condemning widespread rights<br>abuses in Sudan and Zimbabwe<br>failed to pass a UN committee,<br>mired in debate between<br>African and western nations."
1796 ],
1797 [
1798 "The return of noted reformer<br>Nabil Amr to Palestinian<br>politics comes at a crucial<br>juncture."
1799 ],
1800 [
1801 "AP - After two debates, voters<br>have seen President Bush look<br>peevish and heard him pass the<br>buck. They've watched Sen.<br>John Kerry deny he's a flip-<br>flopper and then argue that<br>Saddam Hussein was a threat<br>#151; and wasn't. It's no<br>wonder so few minds have<br>changed."
1802 ],
1803 [
1804 "The United States says the<br>Lebanese parliament #39;s<br>decision Friday to extend the<br>term of pro-Syrian President<br>Emile Lahoud made a<br>quot;crude mockery of<br>democratic principles."
1805 ],
1806 [
1807 "Canadian Press - OTTAWA (CP) -<br>The prime minister says he's<br>been assured by President<br>George W. Bush that the U.S.<br>missile defence plan does not<br>necessarily involve the<br>weaponization of space."
1808 ],
1809 [
1810 "Fifty-six miners are dead and<br>another 92 are still stranded<br>underground after a gas blast<br>at the Daping coal mine in<br>Central China #39;s Henan<br>Province, safety officials<br>said Thursday."
1811 ],
1812 [
1813 "BEIRUT, Lebanon - Three<br>Lebanese men and their Iraqi<br>driver have been kidnapped in<br>Iraq, the Lebanese Foreign<br>Ministry said Sunday, as<br>Iraq's prime minister said his<br>government was working for the<br>release of two Americans and a<br>Briton also being held<br>hostage. Gunmen snatched<br>the three Lebanese, who worked<br>for a travel agency with a<br>branch in Baghdad, as they<br>drove on the highway between<br>the capital and Fallujah on<br>Friday night, a ministry<br>official said..."
1814 ],
1815 [
1816 "PORTLAND, Ore. - It's been<br>almost a year since singer-<br>songwriter Elliott Smith<br>committed suicide, and fans<br>and friends will be looking<br>for answers as the posthumous<br>\"From a Basement on the Hill\"<br>is released..."
1817 ],
1818 [
1819 " GAZA (Reuters) - Israel<br>expanded its military<br>offensive in northern Gaza,<br>launching two air strikes<br>early on Monday that killed<br>at least three Palestinians<br>and wounded two, including a<br>senior Hamas leader, witnesses<br>and medics said."
1820 ],
1821 [
1822 "Reuters - Sudan's government<br>resumed\\talks with rebels in<br>the oil-producing south on<br>Thursday while\\the United<br>Nations set up a panel to<br>investigate charges<br>of\\genocide in the west of<br>Africa's largest country."
1823 ],
1824 [
1825 "NEW YORK - Optimism that the<br>embattled technology sector<br>was due for a recovery sent<br>stocks modestly higher Monday<br>despite a new revenue warning<br>from semiconductor company<br>Broadcom Inc. While<br>Broadcom, which makes chips<br>for television set-top boxes<br>and other electronics, said<br>high inventories resulted in<br>delayed shipments, investors<br>were encouraged as it said<br>future quarters looked<br>brighter..."
1826 ],
1827 [
1828 "Carlos Barrios Orta squeezed<br>himself into his rubber diving<br>suit, pulled on an 18-pound<br>helmet that made him look like<br>an astronaut, then lowered<br>himself into the sewer. He<br>disappeared into the filthy<br>water, which looked like some<br>cauldron of rancid beef stew,<br>until the only sign of him was<br>air bubbles breaking the<br>surface."
1829 ],
1830 [
1831 "The mutilated body of a woman<br>of about sixty years,<br>amputated of arms and legs and<br>with the sliced throat, has<br>been discovered this morning<br>in a street of the south of<br>Faluya by the Marines,<br>according to a statement by<br>AFP photographer."
1832 ],
1833 [
1834 "(SH) - In Afghanistan, Hamid<br>Karzai defeated a raft of<br>candidates to win his historic<br>election. In Iraq, more than<br>200 political parties have<br>registered for next month<br>#39;s elections."
1835 ],
1836 [
1837 "Margaret Hassan, who works for<br>charity Care International,<br>was taken hostage while on her<br>way to work in Baghdad. Here<br>are the main events since her<br>kidnapping."
1838 ],
1839 [
1840 "Reuters - The United States<br>modified its\\call for U.N.<br>sanctions against Sudan on<br>Tuesday but still kept\\up the<br>threat of punitive measures if<br>Khartoum did not<br>stop\\atrocities in its Darfur<br>region."
1841 ],
1842 [
1843 "Human rights and environmental<br>activists have hailed the<br>award of the 2004 Nobel Peace<br>Prize to Wangari Maathai of<br>Kenya as fitting recognition<br>of the growing role of civil<br>society"
1844 ],
1845 [
1846 "An Al Qaeda-linked militant<br>group beheaded an American<br>hostage in Iraq and threatened<br>last night to kill another two<br>Westerners in 24 hours unless<br>women prisoners were freed<br>from Iraqi jails."
1847 ],
1848 [
1849 "Argentina, Denmark, Greece,<br>Japan and Tanzania on Friday<br>won coveted two-year terms on<br>the UN Security Council at a<br>time when pressure is mounting<br>to expand the powerful<br>15-nation body."
1850 ],
1851 [
1852 "ISLAMABAD: Pakistan and India<br>agreed on Friday to re-open<br>the Khokhropar-Munabao railway<br>link, which was severed nearly<br>40 years ago."
1853 ],
1854 [
1855 "NEW YORK - Stocks moved higher<br>Friday as a stronger than<br>expected retail sales report<br>showed that higher oil prices<br>aren't scaring consumers away<br>from spending. Federal Reserve<br>Chairman Alan Greenspan's<br>positive comments on oil<br>prices also encouraged<br>investors..."
1856 ],
1857 [
1858 "Saddam Hussein lives in an<br>air-conditioned 10-by-13 foot<br>cell on the grounds of one of<br>his former palaces, tending<br>plants and proclaiming himself<br>Iraq's lawful ruler."
1859 ],
1860 [
1861 "AP - Brazilian U.N.<br>peacekeepers will remain in<br>Haiti until presidential<br>elections are held in that<br>Caribbean nation sometime next<br>year, President Luiz Inacio<br>Lula da Silva said Monday."
1862 ],
1863 [
1864 "Iraq is quot;working 24 hours<br>a day to ... stop the<br>terrorists, quot; interim<br>Iraqi Prime Minister Ayad<br>Allawi said Monday. Iraqis are<br>pushing ahead with reforms and<br>improvements, Allawi told"
1865 ],
1866 [
1867 "AP - Musicians, composers and<br>authors were among the more<br>than two dozen people<br>Wednesday honored with<br>National Medal of Arts and<br>National Humanities awards at<br>the White House."
1868 ],
1869 [
1870 "Wynton Marsalis, the trumpet-<br>playing star and artistic<br>director of Jazz at Lincoln<br>Center, has become an entity<br>above and around the daily<br>jazz world."
1871 ],
1872 [
1873 "BUENOS AIRES: Pakistan has<br>ratified the Kyoto Protocol on<br>Climatic Change, Environment<br>Minister Malik Khan said on<br>Thursday. He said that<br>Islamabad has notified UN<br>authorities of ratification,<br>which formally comes into<br>effect in February 2005."
1874 ],
1875 [
1876 "Staff Sgt. Johnny Horne, Jr.,<br>and Staff Sgt. Cardenas Alban<br>have been charged with murder<br>in the death of an Iraqi, the<br>1st Cavalry Division announced<br>Monday."
1877 ],
1878 [
1879 "President Vladimir Putin makes<br>a speech as he hosts Russia<br>#39;s Olympic athletes at a<br>Kremlin banquet in Moscow,<br>Thursday, Nov. 4, 2004."
1880 ],
1881 [
1882 "AFP - Hundreds of Buddhists in<br>southern Russia marched<br>through snow to see and hear<br>the Dalai Lama as he continued<br>a long-awaited visit to the<br>country in spite of Chinese<br>protests."
1883 ],
1884 [
1885 "British officials were on<br>diplomatic tenterhooks as they<br>awaited the arrival on<br>Thursday of French President<br>Jacques Chirac for a two-day<br>state visit to Britain."
1886 ],
1887 [
1888 " SYDNEY (Reuters) - A group of<br>women on Pitcairn Island in<br>the South Pacific are standing<br>by their men, who face<br>underage sex charges, saying<br>having sex at age 12 is a<br>tradition dating back to 18th<br>century mutineers who settled<br>on the island."
1889 ],
1890 [
1891 "Two aircraft are flying out<br>from the UK on Sunday to<br>deliver vital aid and supplies<br>to Haiti, which has been<br>devastated by tropical storm<br>Jeanne."
1892 ],
1893 [
1894 "A scare triggered by a<br>vibrating sex toy shut down a<br>major Australian regional<br>airport for almost an hour<br>Monday, police said. The<br>vibrating object was<br>discovered Monday morning"
1895 ],
1896 [
1897 "AP - An Indiana congressional<br>candidate abruptly walked off<br>the set of a debate because<br>she got stage fright."
1898 ],
1899 [
1900 "Reuters - Having reached out<br>to Kashmiris during a two-day<br>visit to the region, the prime<br>minister heads this weekend to<br>the country's volatile<br>northeast, where public anger<br>is high over alleged abuses by<br>Indian soldiers."
1901 ],
1902 [
1903 "SAN JUAN IXTAYOPAN, Mexico --<br>A pair of wooden crosses<br>outside the elementary school<br>are all that mark the macabre<br>site where, just weeks ago, an<br>angry mob captured two federal<br>police officers, beat them<br>unconscious, and set them on<br>fire."
1904 ],
1905 [
1906 "DUBLIN : An Olympic Airlines<br>plane diverted to Ireland<br>following a bomb alert, the<br>second faced by the Greek<br>carrier in four days, resumed<br>its journey to New York after<br>no device was found on board,<br>airport officials said."
1907 ],
1908 [
1909 " WASHINGTON (Reuters) - The<br>United States said on Friday<br>it is preparing a new U.N.<br>resolution on Darfur and that<br>Secretary of State Colin<br>Powell might address next week<br>whether the violence in<br>western Sudan constitutes<br>genocide."
1910 ],
1911 [
1912 "NAJAF, Iraq : Iraq #39;s top<br>Shiite Muslim clerics, back in<br>control of Najaf #39;s Imam<br>Ali shrine after a four-month<br>militia occupation, met amid<br>the ruins of the city as life<br>spluttered back to normality."
1913 ],
1914 [
1915 "Reuters - House of<br>Representatives<br>Majority\\Leader Tom DeLay,<br>admonished twice in six days<br>by his chamber's\\ethics<br>committee, withstood calls on<br>Thursday by rival\\Democrats<br>and citizen groups that he<br>step aside."
1916 ],
1917 [
1918 "AFP - Australia has accounted<br>for all its nationals known to<br>be working in Iraq following a<br>claim by a radical Islamic<br>group to have kidnapped two<br>Australians, Foreign Affairs<br>Minister Alexander Downer<br>said."
1919 ],
1920 [
1921 "The hurricane appeared to be<br>strengthening and forecasters<br>warned of an increased threat<br>of serious flooding and wind<br>damage."
1922 ],
1923 [
1924 "Four homeless men were<br>bludgeoned to death and six<br>were in critical condition on<br>Friday following early morning<br>attacks by unknown assailants<br>in downtown streets of Sao<br>Paulo, a police spokesman<br>said."
1925 ],
1926 [
1927 "Phone companies are not doing<br>enough to warn customers about<br>internet \"rogue-dialling\"<br>scams, watchdog Icstis warns."
1928 ],
1929 [
1930 "India's main opposition party<br>takes action against senior<br>party member Uma Bharti after<br>a public row."
1931 ],
1932 [
1933 "The Russian military yesterday<br>extended its offer of a \\$10<br>million reward for information<br>leading to the capture of two<br>separatist leaders who, the<br>Kremlin claims, were behind<br>the Beslan massacre."
1934 ],
1935 [
1936 "Israels Shin Bet security<br>service has tightened<br>protection of the prime<br>minister, MPs and parliament<br>ahead of next weeks crucial<br>vote on a Gaza withdrawal."
1937 ],
1938 [
1939 "Reuters - Iraq's interim<br>defense minister<br>accused\\neighbors Iran and<br>Syria on Wednesday of aiding<br>al Qaeda\\Islamist Abu Musab<br>al-Zarqawi and former agents<br>of Saddam\\Hussein to promote a<br>\"terrorist\" insurgency in<br>Iraq."
1940 ],
1941 [
1942 "AP - The Senate race in<br>Kentucky stayed at fever pitch<br>on Thursday as Democratic<br>challenger Daniel Mongiardo<br>stressed his opposition to gay<br>marriage while accusing<br>Republican incumbent Jim<br>Bunning of fueling personal<br>attacks that seemed to suggest<br>Mongiardo is gay."
1943 ],
1944 [
1945 " PORT LOUIS, Aug. 17<br>(Xinhuanet) -- Southern<br>African countries Tuesday<br>pledged better trade and<br>investment relations with<br>China as well as India in the<br>final communique released at<br>the end of their two-day<br>summit."
1946 ],
1947 [
1948 "BAGHDAD - A militant group has<br>released a video saying it<br>kidnapped a missing journalist<br>in Iraq and would kill him<br>unless US forces left Najaf<br>within 48 hours."
1949 ],
1950 [
1951 "18 August 2004 -- There has<br>been renewed fighting in the<br>Iraqi city of Al-Najaf between<br>US and Iraqi troops and Shi<br>#39;a militiamen loyal to<br>radical cleric Muqtada al-<br>Sadr."
1952 ],
1953 [
1954 "Australia tighten their grip<br>on the third Test and the<br>series after dominating India<br>on day two in Nagpur."
1955 ],
1956 [
1957 " SEOUL (Reuters) - North<br>Korea's two-year-old nuclear<br>crisis has taxed the world's<br>patience, the chief United<br>Nations nuclear regulator<br>said on Wednesday, urging<br>communist Pyongyang to return<br>to its disarmament treaty<br>obligations."
1958 ],
1959 [
1960 "GROZNY, Russia - The Russian<br>government's choice for<br>president of war-ravaged<br>Chechnya appeared to be the<br>victor Sunday in an election<br>tainted by charges of fraud<br>and shadowed by last week's<br>terrorist destruction of two<br>airliners. Little more than<br>two hours after polls closed,<br>acting Chechen president<br>Sergei Abramov said<br>preliminary results showed<br>Maj..."
1961 ],
1962 [
1963 "BAGHDAD, Sept 5 (AFP) - Izzat<br>Ibrahim al-Duri, Saddam<br>Hussein #39;s deputy whose<br>capture was announced Sunday,<br>is 62 and riddled with cancer,<br>but was public enemy number<br>two in Iraq for the world<br>#39;s most powerful military."
1964 ],
1965 [
1966 "AP - An explosion targeted the<br>Baghdad governor's convoy as<br>he was traveling through the<br>capital Tuesday, killing two<br>people but leaving him<br>uninjured, the Interior<br>Ministry said."
1967 ],
1968 [
1969 "GENEVA: Rescuers have found<br>the bodies of five Swiss<br>firemen who died after the<br>ceiling of an underground car<br>park collapsed during a fire,<br>a police spokesman said last<br>night."
1970 ],
1971 [
1972 "John Kerry has held 10 \"front<br>porch visit\" events an actual<br>front porch is optional where<br>perhaps 100 people ask<br>questions in a low-key<br>campaigning style."
1973 ],
1974 [
1975 "The right-win opposition<br>Conservative Party and Liberal<br>Center Union won 43 seats in<br>the 141-member Lithuanian<br>parliament, after more than 99<br>percent of the votes were<br>counted"
1976 ],
1977 [
1978 "KHARTOUM, Aug 18 (Reuters) -<br>The United Nations said on<br>Wednesday it was very<br>concerned by Sudan #39;s lack<br>of practical progress in<br>bringing security to Darfur,<br>where more than a million<br>people have fled their homes<br>for fear of militia ..."
1979 ],
1980 [
1981 "AFP - With less than two<br>months until the November 2<br>election, President George W.<br>Bush is working to shore up<br>support among his staunchest<br>supporters even as he courts<br>undecided voters."
1982 ],
1983 [
1984 "Chile's government says it<br>will build a prison for<br>officers convicted of human<br>rights abuses in the Pinochet<br>era."
1985 ],
1986 [
1987 "Palestinian leader Mahmoud<br>Abbas reiterated calls for his<br>people to drop their weapons<br>in the struggle for a state. a<br>clear change of strategy for<br>peace with Israel after Yasser<br>Arafat #39;s death."
1988 ],
1989 [
1990 " BAGHDAD (Reuters) - Iraq's<br>U.S.-backed government said on<br>Tuesday that \"major neglect\"<br>by its American-led military<br>allies led to a massacre of 49<br>army recruits at the weekend."
1991 ],
1992 [
1993 "BEIJING -- Police have<br>detained a man accused of<br>slashing as many as nine boys<br>to death as they slept in<br>their high school dormitory in<br>central China, state media<br>reported today."
1994 ],
1995 [
1996 "Israeli Prime Minister Ariel<br>Sharon #39;s Likud party<br>agreed on Thursday to a<br>possible alliance with<br>opposition Labour in a vote<br>that averted a snap election<br>and strengthened his Gaza<br>withdrawal plan."
1997 ],
1998 [
1999 "While the American forces are<br>preparing to launch a large-<br>scale attack against Falluja<br>and al-Ramadi, one of the<br>chieftains of Falluja said<br>that contacts are still<br>continuous yesterday between<br>members representing the city<br>#39;s delegation and the<br>interim"
2000 ],
2001 [
2002 "UN Security Council<br>ambassadors were still<br>quibbling over how best to<br>pressure Sudan and rebels to<br>end two different wars in the<br>country even as they left for<br>Kenya on Tuesday for a meeting<br>on the crisis."
2003 ],
2004 [
2005 "HENDALA, Sri Lanka -- Day<br>after day, locked in a cement<br>room somewhere in Iraq, the<br>hooded men beat him. They told<br>him he would be beheaded.<br>''Ameriqi! quot; they shouted,<br>even though he comes from this<br>poor Sri Lankan fishing<br>village."
2006 ],
2007 [
2008 "THE kidnappers of British aid<br>worker Margaret Hassan last<br>night threatened to turn her<br>over to the group which<br>beheaded Ken Bigley if the<br>British Government refuses to<br>pull its troops out of Iraq."
2009 ],
2010 [
2011 "&lt;p&gt;&lt;/p&gt;&lt;p&gt;<br>BOGOTA, Colombia (Reuters) -<br>Ten Colombian police<br>officerswere killed on Tuesday<br>in an ambush by the National<br>LiberationArmy, or ELN, in the<br>worst attack by the Marxist<br>group inyears, authorities<br>told Reuters.&lt;/p&gt;"
2012 ],
2013 [
2014 "AFP - US President George W.<br>Bush called his Philippines<br>counterpart Gloria Arroyo and<br>said their countries should<br>keep strong ties, a spokesman<br>said after a spat over<br>Arroyo's handling of an Iraq<br>kidnapping."
2015 ],
2016 [
2017 "A scathing judgment from the<br>UK #39;s highest court<br>condemning the UK government<br>#39;s indefinite detention of<br>foreign terror suspects as a<br>threat to the life of the<br>nation, left anti-terrorist<br>laws in the UK in tatters on<br>Thursday."
2018 ],
2019 [
2020 "Reuters - Australia's<br>conservative Prime<br>Minister\\John Howard, handed<br>the most powerful mandate in a<br>generation,\\got down to work<br>on Monday with reform of<br>telecommunications,\\labor and<br>media laws high on his agenda."
2021 ],
2022 [
2023 " TOKYO (Reuters) - Typhoon<br>Megi killed one person as it<br>slammed ashore in northern<br>Japan on Friday, bringing the<br>death toll to at least 13 and<br>cutting power to thousands of<br>homes before heading out into<br>the Pacific."
2024 ],
2025 [
2026 "Cairo: Egyptian President<br>Hosni Mubarak held telephone<br>talks with Palestinian leader<br>Yasser Arafat about Israel<br>#39;s plan to pull troops and<br>the 8,000 Jewish settlers out<br>of the Gaza Strip next year,<br>the Egyptian news agency Mena<br>said."
2027 ],
2028 [
2029 "The first American military<br>intelligence soldier to be<br>court-martialed over the Abu<br>Ghraib abuse scandal was<br>sentenced Saturday to eight<br>months in jail, a reduction in<br>rank and a bad-conduct<br>discharge."
2030 ],
2031 [
2032 " TOKYO (Reuters) - Japan will<br>seek an explanation at weekend<br>talks with North Korea on<br>activity indicating Pyongyang<br>may be preparing a missile<br>test, although Tokyo does not<br>think a launch is imminent,<br>Japan's top government<br>spokesman said."
2033 ],
2034 [
2035 " BEIJING (Reuters) - Iran will<br>never be prepared to<br>dismantle its nuclear program<br>entirely but remains committed<br>to the non-proliferation<br>treaty (NPT), its chief<br>delegate to the International<br>Atomic Energy Agency said on<br>Wednesday."
2036 ],
2037 [
2038 "&lt;p&gt;&lt;/p&gt;&lt;p&gt;<br>SANTIAGO, Chile (Reuters) -<br>President Bush on<br>Saturdayreached into a throng<br>of squabbling bodyguards and<br>pulled aSecret Service agent<br>away from Chilean security<br>officers afterthey stopped the<br>U.S. agent from accompanying<br>the president ata<br>dinner.&lt;/p&gt;"
2039 ],
2040 [
2041 "Iranian deputy foreign<br>minister Gholamali Khoshrou<br>denied Tuesday that his<br>country #39;s top leaders were<br>at odds over whether nuclear<br>weapons were un-Islamic,<br>insisting that it will<br>quot;never quot; make the<br>bomb."
2042 ],
2043 [
2044 " quot;Israel mercenaries<br>assisting the Ivory Coast army<br>operated unmanned aircraft<br>that aided aerial bombings of<br>a French base in the country,<br>quot; claimed"
2045 ],
2046 [
2047 "AFP - SAP, the world's leading<br>maker of business software,<br>may need an extra year to<br>achieve its medium-term profit<br>target of an operating margin<br>of 30 percent, its chief<br>financial officer said."
2048 ],
2049 [
2050 "AFP - The airline Swiss said<br>it had managed to cut its<br>first-half net loss by about<br>90 percent but warned that<br>spiralling fuel costs were<br>hampering a turnaround despite<br>increasing passenger travel."
2051 ],
2052 [
2053 "Vulnerable youngsters expelled<br>from schools in England are<br>being let down by the system,<br>say inspectors."
2054 ],
2055 [
2056 "Yasser Arafat was undergoing<br>tests for possible leukaemia<br>at a military hospital outside<br>Paris last night after being<br>airlifted from his Ramallah<br>headquarters to an anxious<br>farewell from Palestinian<br>well-wishers."
2057 ],
2058 [
2059 "Nepal #39;s main opposition<br>party urged the government on<br>Monday to call a unilateral<br>ceasefire with Maoist rebels<br>and seek peace talks to end a<br>road blockade that has cut the<br>capital off from the rest of<br>the country."
2060 ],
2061 [
2062 "BOSTON - The New York Yankees<br>and Boston were tied 4-4 after<br>13 innings Monday night with<br>the Red Sox trying to stay<br>alive in the AL championship<br>series. Boston tied the<br>game with two runs in the<br>eighth inning on David Ortiz's<br>solo homer, a walk to Kevin<br>Millar, a single by Trot Nixon<br>and a sacrifice fly by Jason<br>Varitek..."
2063 ],
2064 [
2065 "Reuters - The country may be<br>more\\or less evenly divided<br>along partisan lines when it<br>comes to\\the presidential<br>race, but the Republican Party<br>prevailed in\\the Nielsen<br>polling of this summer's<br>nominating conventions."
2066 ],
2067 [
2068 " In Vice President Cheney's<br>final push before next<br>Tuesday's election, talk of<br>nuclear annihilation and<br>escalating war rhetoric have<br>blended with balloon drops,<br>confetti cannons and the other<br>trappings of modern<br>campaigning with such ferocity<br>that it is sometimes tough to<br>tell just who the enemy is."
2069 ]
2070 ],
2071 "hovertemplate": "label=World<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
2072 "legendgroup": "World",
2073 "marker": {
2074 "color": "#636efa",
2075 "size": 5,
2076 "symbol": "circle"
2077 },
2078 "mode": "markers",
2079 "name": "World",
2080 "showlegend": true,
2081 "type": "scattergl",
2082 "x": [
2083 9.787297,
2084 17.206654,
2085 28.167477,
2086 14.671119,
2087 21.907679,
2088 11.003371,
2089 12.786125,
2090 28.192938,
2091 27.511831,
2092 31.907536,
2093 27.685726,
2094 -0.48236108,
2095 24.631432,
2096 19.87161,
2097 42.217842,
2098 23.463217,
2099 15.450646,
2100 22.48473,
2101 47.958393,
2102 7.788443,
2103 26.455547,
2104 -4.8219795,
2105 3.2403526,
2106 0.8158772,
2107 7.324227,
2108 24.88585,
2109 38.79396,
2110 13.661437,
2111 30.355759,
2112 3.1252713,
2113 -17.98721,
2114 18.820461,
2115 13.827141,
2116 1.4320391,
2117 12.191131,
2118 -2.3659778,
2119 25.89013,
2120 -1.0874362,
2121 15.950565,
2122 11.055151,
2123 14.368044,
2124 15.940281,
2125 28.371725,
2126 17.925577,
2127 15.851762,
2128 1.6593695,
2129 18.05479,
2130 28.471008,
2131 10.705277,
2132 18.345266,
2133 31.360231,
2134 50.538635,
2135 4.6381655,
2136 16.084637,
2137 51.287056,
2138 12.821454,
2139 24.011929,
2140 17.79019,
2141 15.120078,
2142 -39.450546,
2143 19.99747,
2144 15.529904,
2145 19.791918,
2146 -9.525661,
2147 12.873272,
2148 16.33122,
2149 22.366423,
2150 2.4414933,
2151 25.421625,
2152 20.893494,
2153 19.51864,
2154 11.30494,
2155 2.9794881,
2156 12.285144,
2157 3.3651476,
2158 -16.802534,
2159 18.079544,
2160 2.7036908,
2161 6.7110343,
2162 -1.3755705,
2163 10.5324745,
2164 18.966919,
2165 31.810251,
2166 17.243034,
2167 4.507162,
2168 21.953882,
2169 12.895756,
2170 13.899155,
2171 9.645002,
2172 8.84193,
2173 7.766448,
2174 10.753302,
2175 60.835865,
2176 29.961258,
2177 31.980536,
2178 23.273722,
2179 3.1031818,
2180 12.880273,
2181 11.016033,
2182 17.860275,
2183 12.732019,
2184 16.701687,
2185 14.009928,
2186 18.774673,
2187 2.979671,
2188 8.863162,
2189 9.040379,
2190 24.042429,
2191 25.076736,
2192 30.519775,
2193 12.896586,
2194 25.85091,
2195 19.948092,
2196 20.974108,
2197 18.678154,
2198 49.229675,
2199 -13.887877,
2200 19.741331,
2201 31.022472,
2202 -11.186273,
2203 18.250782,
2204 4.836007,
2205 -9.537627,
2206 24.104692,
2207 1.9518297,
2208 15.377659,
2209 14.915583,
2210 19.173527,
2211 -7.4475813,
2212 8.212411,
2213 5.134725,
2214 14.638772,
2215 1.3949758,
2216 15.7138605,
2217 17.170551,
2218 17.347712,
2219 24.028929,
2220 5.1724906,
2221 27.314432,
2222 12.80685,
2223 -26.112938,
2224 12.646676,
2225 9.909096,
2226 22.181377,
2227 29.485273,
2228 -1.1384851,
2229 24.128727,
2230 16.221085,
2231 25.097984,
2232 8.574884,
2233 21.295237,
2234 25.800558,
2235 5.8968763,
2236 24.184378,
2237 -54.980534,
2238 46.068615,
2239 20.787077,
2240 29.313784,
2241 8.255305,
2242 15.709119,
2243 -26.129557,
2244 10.710161,
2245 23.318872,
2246 -46.75248,
2247 20.918581,
2248 11.446291,
2249 10.624376,
2250 13.654009,
2251 23.009165,
2252 0.9160498,
2253 1.6248351,
2254 15.268804,
2255 20.570063,
2256 16.519796,
2257 1.7450867,
2258 -16.392036,
2259 19.578056,
2260 9.273592,
2261 5.769484,
2262 5.3805246,
2263 2.333401,
2264 14.209792,
2265 7.33986,
2266 -1.2716205,
2267 2.7853732,
2268 26.978062,
2269 18.276062,
2270 20.191584,
2271 25.01299,
2272 10.248553,
2273 4.6009235,
2274 9.839586,
2275 11.750173,
2276 7.9382405,
2277 17.778656,
2278 15.492881,
2279 7.7321296,
2280 8.952756,
2281 20.371246,
2282 -9.127035,
2283 1.8769449,
2284 12.356418,
2285 4.2263513,
2286 31.053217,
2287 -9.149289,
2288 9.723743,
2289 27.65755,
2290 26.112234,
2291 -39.176956,
2292 16.072603,
2293 17.410772,
2294 12.662249,
2295 18.940567,
2296 20.549877,
2297 19.506048,
2298 8.936648,
2299 14.902041,
2300 22.10423,
2301 -2.6893454,
2302 51.905163,
2303 21.657618,
2304 13.691204,
2305 28.035511,
2306 23.045893,
2307 30.591192,
2308 17.440117,
2309 -9.929121,
2310 7.212067,
2311 14.5572,
2312 -33.03146,
2313 26.660809,
2314 2.4019308,
2315 14.605348,
2316 5.080946,
2317 4.331932,
2318 32.7655,
2319 23.97021,
2320 22.242004,
2321 -28.60194,
2322 14.265632,
2323 7.0784307,
2324 20.74278,
2325 4.454403,
2326 51.55675,
2327 14.978659,
2328 11.338411,
2329 11.213355,
2330 15.526145,
2331 9.335806,
2332 -8.953644,
2333 18.62211,
2334 23.033293,
2335 -5.5465455,
2336 10.529721,
2337 13.965547,
2338 21.258057,
2339 10.181149,
2340 17.598188,
2341 1.3672223,
2342 32.536667,
2343 10.24864,
2344 5.8206697,
2345 -10.62197,
2346 21.86292,
2347 20.400032,
2348 27.48848,
2349 2.2426317,
2350 5.0682087,
2351 27.914957,
2352 16.509165,
2353 14.155432,
2354 2.808305,
2355 6.707939,
2356 19.51436,
2357 18.935217,
2358 46.280994,
2359 8.379798,
2360 2.4920332,
2361 47.18665,
2362 -0.99369574,
2363 -28.31348,
2364 2.79127,
2365 16.340908,
2366 20.619595,
2367 23.400663,
2368 14.445518,
2369 26.900372,
2370 12.496445,
2371 28.753572,
2372 21.319304,
2373 11.094263,
2374 7.11425,
2375 18.546873,
2376 37.20064,
2377 9.897873,
2378 24.480858,
2379 8.527567,
2380 16.88663,
2381 13.06387,
2382 29.025854,
2383 3.984353,
2384 -1.1919637,
2385 5.320594,
2386 14.373686,
2387 11.930037,
2388 23.310764,
2389 18.960714,
2390 17.941885,
2391 10.820086,
2392 11.278602,
2393 8.342169,
2394 58.012913,
2395 7.6059,
2396 -7.4377956,
2397 12.515653,
2398 8.195707,
2399 1.8771796,
2400 22.029692,
2401 4.4929285,
2402 -17.537066,
2403 -2.2965894,
2404 3.6962993,
2405 11.67213,
2406 5.52023,
2407 15.926025,
2408 4.0713243,
2409 -3.7340183,
2410 -15.154654,
2411 11.040503,
2412 13.273838,
2413 7.288217,
2414 -18.065994,
2415 8.75742,
2416 29.14241,
2417 17.28087,
2418 13.877883,
2419 21.1013,
2420 13.981468,
2421 10.2113,
2422 28.748735,
2423 10.333969,
2424 12.468114,
2425 3.0369818,
2426 24.300056,
2427 -8.906268,
2428 -0.9226989,
2429 32.861256,
2430 1.5139743,
2431 22.857521,
2432 4.3284388,
2433 26.680521,
2434 8.132189,
2435 11.17274,
2436 22.79567,
2437 2.0400486,
2438 19.547178,
2439 -4.5817585,
2440 17.717125,
2441 32.523216,
2442 19.772266,
2443 10.665481,
2444 15.195456,
2445 11.543438,
2446 -18.300999,
2447 18.401154,
2448 7.0795293,
2449 19.923655,
2450 14.908174,
2451 15.951407,
2452 20.179276,
2453 31.14273,
2454 0.258186,
2455 14.35011,
2456 14.368874,
2457 -42.005432,
2458 9.892005,
2459 6.150114,
2460 6.031961,
2461 8.659726,
2462 10.755605,
2463 8.7123785,
2464 12.619259,
2465 0.080250725,
2466 20.854275,
2467 -11.675889,
2468 14.897927,
2469 8.117931,
2470 6.539579,
2471 -52.00866,
2472 7.7298007,
2473 12.733178,
2474 23.083542,
2475 6.8278956,
2476 14.610548,
2477 -19.3257,
2478 7.079915,
2479 21.593582,
2480 22.709345,
2481 23.351994,
2482 10.662044,
2483 6.3287606,
2484 20.248484,
2485 34.33151,
2486 17.894573,
2487 18.915913,
2488 -56.14451,
2489 5.4172053,
2490 -0.9005222,
2491 24.29299,
2492 15.59622,
2493 10.643132,
2494 5.560217,
2495 24.635311,
2496 13.113659,
2497 18.401346,
2498 46.27362,
2499 14.899461,
2500 24.252523,
2501 5.36986,
2502 31.625498,
2503 10.970106,
2504 51.867313,
2505 2.5174408,
2506 15.975605,
2507 27.581682,
2508 1.6741688,
2509 -27.687584,
2510 16.295555,
2511 3.6958573,
2512 17.794357,
2513 10.886147,
2514 18.907486,
2515 3.8529873,
2516 10.995691,
2517 23.637348,
2518 33.6961,
2519 14.72486,
2520 7.9172506,
2521 -48.755344,
2522 -3.3571925,
2523 19.580015,
2524 19.054085,
2525 26.428055,
2526 4.8372564,
2527 2.4959075,
2528 24.6171,
2529 -3.8125634,
2530 -0.46443436,
2531 -45.570045,
2532 25.599476,
2533 14.019283,
2534 15.602155,
2535 -13.399857,
2536 62.178337,
2537 1.1374025,
2538 25.336575,
2539 27.973917,
2540 23.369677,
2541 6.171623,
2542 26.484608,
2543 7.0410976,
2544 19.369898,
2545 20.71207,
2546 12.614038,
2547 17.452501,
2548 18.572897,
2549 6.0333753,
2550 16.012442,
2551 9.572269,
2552 26.459038,
2553 2.9941561,
2554 17.785444,
2555 -16.35767,
2556 20.736986,
2557 24.382677,
2558 16.1644,
2559 19.621206,
2560 8.682678,
2561 1.4400622,
2562 25.263475,
2563 16.929596,
2564 39.76294,
2565 0.50536364,
2566 19.154146,
2567 26.26559,
2568 19.381176,
2569 12.624142,
2570 13.547113,
2571 17.735638,
2572 5.6944747,
2573 11.9049635,
2574 19.661798,
2575 12.937629,
2576 18.126286,
2577 19.819803,
2578 14.775703,
2579 16.772926,
2580 3.6852949,
2581 25.670559,
2582 26.078526,
2583 17.1552,
2584 9.536311,
2585 21.02507,
2586 12.836097,
2587 6.9077144,
2588 13.885367,
2589 25.294838,
2590 0.9785223,
2591 1.8828108,
2592 10.278181,
2593 3.350846,
2594 10.675423,
2595 -27.676836,
2596 -31.987688,
2597 2.7699895,
2598 29.804829,
2599 8.834031,
2600 57.51465,
2601 14.13684,
2602 10.008406
2603 ],
2604 "xaxis": "x",
2605 "y": [
2606 -0.25818,
2607 22.728033,
2608 23.284092,
2609 21.800117,
2610 22.159718,
2611 29.896206,
2612 6.133116,
2613 8.674217,
2614 25.905638,
2615 9.192532,
2616 25.749458,
2617 39.722248,
2618 7.8999453,
2619 -7.791385,
2620 -27.949192,
2621 10.707973,
2622 21.421028,
2623 23.633503,
2624 9.072081,
2625 11.001149,
2626 6.058426,
2627 4.199548,
2628 8.901868,
2629 7.6804514,
2630 4.9480743,
2631 26.755693,
2632 -2.3146381,
2633 2.532362,
2634 23.373753,
2635 22.522005,
2636 24.106895,
2637 9.316687,
2638 27.62886,
2639 5.951754,
2640 15.638516,
2641 -17.482075,
2642 20.813839,
2643 12.0553255,
2644 28.830767,
2645 14.3665,
2646 0.061168052,
2647 23.813591,
2648 21.227903,
2649 31.043804,
2650 3.844936,
2651 1.4175098,
2652 3.6453905,
2653 16.828537,
2654 9.330847,
2655 9.5765,
2656 -10.817816,
2657 5.1117396,
2658 3.6004014,
2659 18.804445,
2660 -9.840589,
2661 4.881303,
2662 30.134317,
2663 32.50385,
2664 8.090675,
2665 21.478413,
2666 14.554468,
2667 20.755419,
2668 23.0764,
2669 8.462659,
2670 18.15951,
2671 2.4064643,
2672 8.999294,
2673 -6.154228,
2674 14.864804,
2675 19.460798,
2676 -2.3412774,
2677 2.4203362,
2678 32.717518,
2679 -7.624435,
2680 2.3350112,
2681 -16.211517,
2682 22.352716,
2683 8.7813,
2684 27.98141,
2685 5.231712,
2686 -9.940092,
2687 2.9951952,
2688 7.513018,
2689 -2.4976819,
2690 22.716187,
2691 15.819128,
2692 5.0620914,
2693 12.743932,
2694 -8.023369,
2695 16.329193,
2696 30.292624,
2697 23.7153,
2698 -17.214022,
2699 15.711783,
2700 0.59863055,
2701 0.31460643,
2702 -1.605775,
2703 10.840164,
2704 30.278105,
2705 19.883846,
2706 -6.269737,
2707 20.470428,
2708 25.027699,
2709 15.167711,
2710 23.27041,
2711 9.704817,
2712 14.702273,
2713 18.21779,
2714 16.7961,
2715 9.027207,
2716 18.049044,
2717 25.408955,
2718 -1.7761685,
2719 7.837817,
2720 34.420277,
2721 6.988793,
2722 24.185543,
2723 17.168627,
2724 10.645888,
2725 33.268223,
2726 35.533974,
2727 5.3443413,
2728 16.755838,
2729 19.649885,
2730 5.488912,
2731 15.933173,
2732 5.761818,
2733 0.9805258,
2734 34.912987,
2735 2.2579987,
2736 31.233051,
2737 22.297411,
2738 3.5171926,
2739 23.886812,
2740 19.465944,
2741 16.774218,
2742 14.815331,
2743 11.881365,
2744 25.418554,
2745 28.923544,
2746 5.0646152,
2747 23.290081,
2748 -5.3597302,
2749 18.798145,
2750 8.9016,
2751 -22.157974,
2752 18.377977,
2753 31.100603,
2754 23.13797,
2755 31.66899,
2756 25.328583,
2757 5.658062,
2758 8.72019,
2759 4.320076,
2760 0.7318651,
2761 -11.081378,
2762 -2.6716044,
2763 13.364902,
2764 5.9486156,
2765 12.414623,
2766 5.5806613,
2767 16.740986,
2768 5.6076837,
2769 19.352674,
2770 -0.68818355,
2771 9.428179,
2772 18.622755,
2773 7.8728004,
2774 21.211613,
2775 10.388335,
2776 -0.20468314,
2777 29.903488,
2778 14.083497,
2779 0.6598771,
2780 26.250034,
2781 -24.852484,
2782 12.103588,
2783 -8.026257,
2784 16.791052,
2785 31.885904,
2786 11.005908,
2787 15.028398,
2788 14.654819,
2789 11.900147,
2790 -1.3390135,
2791 26.11797,
2792 -2.478072,
2793 -23.535704,
2794 27.143415,
2795 0.81385136,
2796 17.844543,
2797 19.694197,
2798 30.822157,
2799 11.223421,
2800 34.832695,
2801 15.818021,
2802 12.122141,
2803 33.150494,
2804 20.72354,
2805 3.162032,
2806 -0.9915625,
2807 -15.606873,
2808 7.1253057,
2809 15.600531,
2810 3.0372694,
2811 -7.6383777,
2812 21.02248,
2813 17.865675,
2814 22.459995,
2815 12.360714,
2816 21.917862,
2817 -2.2529974,
2818 23.902458,
2819 7.067429,
2820 19.686275,
2821 -2.4079158,
2822 20.084156,
2823 9.865102,
2824 -7.1564,
2825 14.4235935,
2826 10.5956135,
2827 33.509598,
2828 2.4050539,
2829 7.209693,
2830 5.5682783,
2831 24.32622,
2832 8.181132,
2833 18.989775,
2834 -25.712864,
2835 24.787573,
2836 14.609039,
2837 7.1217036,
2838 16.848389,
2839 32.03336,
2840 -1.7420386,
2841 10.520301,
2842 30.076416,
2843 2.9773757,
2844 17.441216,
2845 22.073168,
2846 29.535501,
2847 31.019588,
2848 31.29178,
2849 7.783574,
2850 -1.0848922,
2851 -1.632514,
2852 3.1787782,
2853 26.127491,
2854 11.578919,
2855 8.806574,
2856 26.605755,
2857 25.579552,
2858 27.044067,
2859 7.423554,
2860 19.89922,
2861 21.111221,
2862 29.565565,
2863 20.825033,
2864 8.250312,
2865 -4.315795,
2866 33.91667,
2867 31.587502,
2868 22.03959,
2869 2.5191355,
2870 -1.2537154,
2871 1.041188,
2872 6.271001,
2873 15.563097,
2874 19.476908,
2875 17.528534,
2876 14.279812,
2877 19.227066,
2878 27.98984,
2879 17.888885,
2880 20.995552,
2881 -25.321373,
2882 2.030001,
2883 19.098873,
2884 -1.3566388,
2885 8.210962,
2886 -34.972008,
2887 26.949068,
2888 12.173473,
2889 20.502365,
2890 4.4826207,
2891 30.730364,
2892 22.801989,
2893 -7.8275642,
2894 9.649646,
2895 5.474195,
2896 26.200584,
2897 23.3236,
2898 23.742764,
2899 -9.009804,
2900 10.729193,
2901 24.293411,
2902 1.2037258,
2903 -2.6479704,
2904 21.060795,
2905 13.542582,
2906 -0.5990197,
2907 -23.021431,
2908 11.98244,
2909 26.565365,
2910 27.739674,
2911 4.583181,
2912 28.793531,
2913 25.030203,
2914 20.863323,
2915 15.091036,
2916 4.7823358,
2917 -19.877468,
2918 29.76316,
2919 -3.8284235,
2920 -8.098414,
2921 6.9839473,
2922 18.062141,
2923 -3.4012072,
2924 15.937399,
2925 24.769993,
2926 8.2281,
2927 -1.0408515,
2928 3.6773765,
2929 16.484713,
2930 23.824167,
2931 -1.6157911,
2932 -5.807004,
2933 5.4682074,
2934 20.873947,
2935 7.471235,
2936 4.855366,
2937 24.15315,
2938 33.191727,
2939 -1.2212269,
2940 1.353517,
2941 33.686493,
2942 17.499424,
2943 10.638852,
2944 12.36343,
2945 25.982975,
2946 -5.359385,
2947 10.390779,
2948 -2.7448454,
2949 23.544054,
2950 1.2731425,
2951 20.49504,
2952 11.026453,
2953 -5.233647,
2954 7.5924697,
2955 30.057226,
2956 17.865553,
2957 14.572172,
2958 -0.43766883,
2959 26.446459,
2960 7.797492,
2961 27.607801,
2962 -10.88375,
2963 -5.4497714,
2964 -3.2008982,
2965 3.516546,
2966 -2.0853994,
2967 29.915886,
2968 -4.8032465,
2969 10.539988,
2970 22.650063,
2971 16.676228,
2972 23.31772,
2973 6.885112,
2974 -3.024608,
2975 16.557335,
2976 8.043718,
2977 4.2089057,
2978 26.167639,
2979 0.031842478,
2980 23.264338,
2981 28.108557,
2982 13.463569,
2983 17.450424,
2984 4.5370917,
2985 -9.992426,
2986 19.615667,
2987 -8.944074,
2988 10.486003,
2989 13.904057,
2990 0.17712176,
2991 26.276295,
2992 18.80954,
2993 8.85504,
2994 6.502574,
2995 30.14757,
2996 25.445856,
2997 23.137957,
2998 4.7606173,
2999 20.943676,
3000 34.946663,
3001 23.354967,
3002 10.895949,
3003 16.164768,
3004 18.747564,
3005 -8.708449,
3006 26.564816,
3007 3.6623113,
3008 -2.406363,
3009 30.990358,
3010 22.291674,
3011 8.649531,
3012 29.637974,
3013 12.135396,
3014 22.34238,
3015 17.654528,
3016 3.530811,
3017 1.305536,
3018 -3.4917607,
3019 15.667845,
3020 22.695467,
3021 3.3096304,
3022 5.8128743,
3023 24.534492,
3024 0.7944149,
3025 23.025293,
3026 -0.33986145,
3027 14.641378,
3028 4.667992,
3029 6.4794717,
3030 -3.0957053,
3031 1.5328475,
3032 14.641849,
3033 0.75382006,
3034 13.353416,
3035 7.6756034,
3036 -8.807442,
3037 5.574528,
3038 5.459471,
3039 30.176495,
3040 25.41137,
3041 12.340705,
3042 20.984993,
3043 11.320027,
3044 19.095402,
3045 26.357058,
3046 25.323908,
3047 0.40740138,
3048 23.981928,
3049 12.158624,
3050 15.439734,
3051 22.680363,
3052 -0.7899231,
3053 0.6461262,
3054 21.006203,
3055 10.719515,
3056 2.1415112,
3057 15.075585,
3058 19.439365,
3059 -7.721521,
3060 1.3289208,
3061 15.136754,
3062 -3.098876,
3063 0.043326903,
3064 -0.730605,
3065 20.569399,
3066 20.47704,
3067 34.56152,
3068 -9.076381,
3069 11.381456,
3070 27.552359,
3071 34.52153,
3072 12.712044,
3073 13.092032,
3074 -5.358728,
3075 21.975595,
3076 31.648344,
3077 27.402872,
3078 7.268004,
3079 -9.072612,
3080 21.008837,
3081 6.308118,
3082 14.5252905,
3083 -10.20566,
3084 -5.336508,
3085 22.627249,
3086 17.18417,
3087 -2.677447,
3088 6.842084,
3089 -2.1064568,
3090 11.057577,
3091 21.760345,
3092 31.105818,
3093 -7.2484465,
3094 -5.4786696,
3095 16.441422,
3096 -5.9703918,
3097 9.63625,
3098 6.1655693,
3099 18.591246,
3100 27.819729,
3101 5.3510475,
3102 15.152627,
3103 13.393224,
3104 19.411095,
3105 23.425772,
3106 26.30866,
3107 5.3038287,
3108 7.526191,
3109 -2.2162335,
3110 31.378555,
3111 6.302167,
3112 14.10122,
3113 5.90295,
3114 7.223655,
3115 6.634295,
3116 7.232844,
3117 21.119562,
3118 12.128642,
3119 9.936496,
3120 21.916615,
3121 9.071596,
3122 14.497267,
3123 -22.694798,
3124 -8.824205,
3125 -10.619046
3126 ],
3127 "yaxis": "y"
3128 },
3129 {
3130 "customdata": [
3131 [
3132 "PC World - Upcoming chip set<br>will include built-in security<br>features for your PC."
3133 ],
3134 [
3135 "SAN JOSE, Calif. -- Apple<br>Computer (Quote, Chart)<br>unveiled a batch of new iPods,<br>iTunes software and promos<br>designed to keep it atop the<br>heap of digital music players."
3136 ],
3137 [
3138 "Any product, any shape, any<br>size -- manufactured on your<br>desktop! The future is the<br>fabricator. By Bruce Sterling<br>from Wired magazine."
3139 ],
3140 [
3141 "The Microsoft CEO says one way<br>to stem growing piracy of<br>Windows and Office in emerging<br>markets is to offer low-cost<br>computers."
3142 ],
3143 [
3144 "PalmSource surprised the<br>mobile vendor community today<br>with the announcement that it<br>will acquire China MobileSoft<br>(CMS), ostensibly to leverage<br>that company's expertise in<br>building a mobile version of<br>the Linux operating system."
3145 ],
3146 [
3147 "JEFFERSON CITY - An election<br>security expert has raised<br>questions about Missouri<br>Secretary of State Matt Blunt<br>#39;s plan to let soldiers at<br>remote duty stations or in<br>combat areas cast their<br>ballots with the help of<br>e-mail."
3148 ],
3149 [
3150 "A new, optional log-on service<br>from America Online that makes<br>it harder for scammers to<br>access a persons online<br>account will not be available<br>for Macintosh"
3151 ],
3152 [
3153 "It #39;s official. Microsoft<br>recently stated<br>definitivelyand contrary to<br>rumorsthat there will be no<br>new versions of Internet<br>Explorer for users of older<br>versions of Windows."
3154 ],
3155 [
3156 "But fresh antitrust suit is in<br>the envelope, says Novell"
3157 ],
3158 [
3159 "Chips that help a computer's<br>main microprocessors perform<br>specific types of math<br>problems are becoming a big<br>business once again.\\"
3160 ],
3161 [
3162 "A rocket carrying two Russian<br>cosmonauts and an American<br>astronaut to the international<br>space station streaked into<br>orbit on Thursday, the latest<br>flight of a Russian space<br>vehicle to fill in for<br>grounded US shuttles."
3163 ],
3164 [
3165 "OCTOBER 12, 2004<br>(COMPUTERWORLD) - Microsoft<br>Corp. #39;s monthly patch<br>release cycle may be making it<br>more predictable for users to<br>deploy software updates, but<br>there appears to be little<br>letup in the number of holes<br>being discovered in the<br>company #39;s software"
3166 ],
3167 [
3168 "Wearable tech goes mainstream<br>as the Gap introduces jacket<br>with built-in radio.\\"
3169 ],
3170 [
3171 "Funding round of \\$105 million<br>brings broadband Internet<br>telephony company's total haul<br>to \\$208 million."
3172 ],
3173 [
3174 "washingtonpost.com - Anthony<br>Casalena was 17 when he got<br>his first job as a programmer<br>for a start-up called<br>HyperOffice, a software<br>company that makes e-mail and<br>contact management<br>applications for the Web.<br>Hired as an intern, he became<br>a regular programmer after two<br>weeks and rewrote the main<br>product line."
3175 ],
3176 [
3177 "The fossilized neck bones of a<br>230-million-year-old sea<br>creature have features<br>suggesting that the animal<br>#39;s snakelike throat could<br>flare open and create suction<br>that would pull in prey."
3178 ],
3179 [
3180 "IBM late on Tuesday announced<br>the biggest update of its<br>popular WebSphere business<br>software in two years, adding<br>features such as automatically<br>detecting and fixing problems."
3181 ],
3182 [
3183 "AP - British entrepreneur<br>Richard Branson said Monday<br>that his company plans to<br>launch commercial space<br>flights over the next few<br>years."
3184 ],
3185 [
3186 "A group of Internet security<br>and instant messaging<br>providers have teamed up to<br>detect and thwart the growing<br>threat of IM and peer-to-peer<br>viruses and worms, they said<br>this week."
3187 ],
3188 [
3189 "His first space flight was in<br>1965 when he piloted the first<br>manned Gemini mission. Later<br>he made two trips to the moon<br>-- orbiting during a 1969<br>flight and then walking on the<br>lunar surface during a mission<br>in 1972."
3190 ],
3191 [
3192 "By RACHEL KONRAD SAN<br>FRANCISCO (AP) -- EBay Inc.,<br>which has been aggressively<br>expanding in Asia, plans to<br>increase its stake in South<br>Korea's largest online auction<br>company. The Internet<br>auction giant said Tuesday<br>night that it would purchase<br>nearly 3 million publicly held<br>shares of Internet Auction<br>Co..."
3193 ],
3194 [
3195 "AP - China's biggest computer<br>maker, Lenovo Group, said<br>Wednesday it has acquired a<br>majority stake in<br>International Business<br>Machines Corp.'s personal<br>computer business for<br>#36;1.75 billion, one of the<br>biggest Chinese overseas<br>acquisitions ever."
3196 ],
3197 [
3198 "Big evolutionary insights<br>sometimes come in little<br>packages. Witness the<br>startling discovery, in a cave<br>on the eastern Indonesian<br>island of Flores, of the<br>partial skeleton of a half-<br>size Homo species that"
3199 ],
3200 [
3201 "Luke Skywalker and Darth Vader<br>may get all the glory, but a<br>new Star Wars video game<br>finally gives credit to the<br>everyday grunts who couldn<br>#39;t summon the Force for<br>help."
3202 ],
3203 [
3204 " LOS ANGELES (Reuters) -<br>Federal authorities raided<br>three Washington, D.C.-area<br>video game stores and arrested<br>two people for modifying<br>video game consoles to play<br>pirated video games, a video<br>game industry group said on<br>Wednesday."
3205 ],
3206 [
3207 "Thornbugs communicate by<br>vibrating the branches they<br>live on. Now scientists are<br>discovering just what the bugs<br>are \"saying.\""
3208 ],
3209 [
3210 "Federal prosecutors cracked a<br>global cartel that had<br>illegally fixed prices of<br>memory chips in personal<br>computers and servers for<br>three years."
3211 ],
3212 [
3213 "AP - Oracle Corp. CEO Larry<br>Ellison reiterated his<br>determination to prevail in a<br>long-running takeover battle<br>with rival business software<br>maker PeopleSoft Inc.,<br>predicting the proposed deal<br>will create a more competitive<br>company with improved customer<br>service."
3214 ],
3215 [
3216 "AP - Scientists warned Tuesday<br>that a long-term increase in<br>global temperature of 3.5<br>degrees could threaten Latin<br>American water supplies,<br>reduce food yields in Asia and<br>result in a rise in extreme<br>weather conditions in the<br>Caribbean."
3217 ],
3218 [
3219 "AP - Further proof New York's<br>real estate market is<br>inflated: The city plans to<br>sell space on top of lampposts<br>to wireless phone companies<br>for #36;21.6 million a year."
3220 ],
3221 [
3222 "The rollout of new servers and<br>networking switches in stores<br>is part of a five-year<br>agreement supporting 7-Eleven<br>#39;s Retail Information<br>System."
3223 ],
3224 [
3225 "Top Hollywood studios have<br>launched a wave of court cases<br>against internet users who<br>illegally download film files.<br>The Motion Picture Association<br>of America, which acts as the<br>representative of major film"
3226 ],
3227 [
3228 "AUSTRALIANS went into a<br>television-buying frenzy the<br>run-up to the Athens Olympics,<br>suggesting that as a nation we<br>could easily have scored a<br>gold medal for TV purchasing."
3229 ],
3230 [
3231 "The next time you are in your<br>bedroom with your PC plus<br>Webcam switched on, don #39;t<br>think that your privacy is all<br>intact. If you have a Webcam<br>plugged into an infected<br>computer, there is a<br>possibility that"
3232 ],
3233 [
3234 "AP - Shawn Fanning's Napster<br>software enabled countless<br>music fans to swap songs on<br>the Internet for free, turning<br>him into the recording<br>industry's enemy No. 1 in the<br>process."
3235 ],
3236 [
3237 "Reuters - Walt Disney Co.<br>is\\increasing investment in<br>video games for hand-held<br>devices and\\plans to look for<br>acquisitions of small game<br>publishers and\\developers,<br>Disney consumer products<br>Chairman Andy Mooney said\\on<br>Monday."
3238 ],
3239 [
3240 "BANGKOK - A UN conference last<br>week banned commercial trade<br>in the rare Irrawaddy dolphin,<br>a move environmentalists said<br>was needed to save the<br>threatened species."
3241 ],
3242 [
3243 "PC World - Updated antivirus<br>software for businesses adds<br>intrusion prevention features."
3244 ],
3245 [
3246 "Reuters - Online media company<br>Yahoo Inc.\\ late on Monday<br>rolled out tests of redesigned<br>start\\pages for its popular<br>Yahoo.com and My.Yahoo.com<br>sites."
3247 ],
3248 [
3249 "The Sun may have captured<br>thousands or even millions of<br>asteroids from another<br>planetary system during an<br>encounter more than four<br>billion years ago, astronomers<br>are reporting."
3250 ],
3251 [
3252 "Thumb through the book - then<br>buy a clean copy from Amazon"
3253 ],
3254 [
3255 "Reuters - High-definition<br>television can\\show the sweat<br>beading on an athlete's brow,<br>but the cost of\\all the<br>necessary electronic equipment<br>can get a shopper's own\\pulse<br>racing."
3256 ],
3257 [
3258 "MacCentral - Apple Computer<br>Inc. on Monday released an<br>update for Apple Remote<br>Desktop (ARD), the company's<br>software solution to assist<br>Mac system administrators and<br>computer managers with asset<br>management, software<br>distribution and help desk<br>support. ARD 2.1 includes<br>several enhancements and bug<br>fixes."
3259 ],
3260 [
3261 "The fastest-swiveling space<br>science observatory ever built<br>rocketed into orbit on<br>Saturday to scan the universe<br>for celestial explosions."
3262 ],
3263 [
3264 "Copernic Unleashes Desktop<br>Search Tool\\\\Copernic<br>Technologies Inc. today<br>announced Copernic Desktop<br>Search(TM) (CDS(TM)), \"The<br>Search Engine For Your PC<br>(TM).\" Copernic has used the<br>experience gained from over 30<br>million downloads of its<br>Windows-based Web search<br>software to develop CDS, a<br>desktop search product that<br>users are saying is far ..."
3265 ],
3266 [
3267 "The DVD Forum moved a step<br>further toward the advent of<br>HD DVD media and drives with<br>the approval of key physical<br>specifications at a meeting of<br>the organisations steering<br>committee last week."
3268 ],
3269 [
3270 "Often pigeonholed as just a<br>seller of televisions and DVD<br>players, Royal Philips<br>Electronics said third-quarter<br>profit surged despite a slide<br>into the red by its consumer<br>electronics division."
3271 ],
3272 [
3273 "AP - Google, the Internet<br>search engine, has done<br>something that law enforcement<br>officials and their computer<br>tools could not: Identify a<br>man who died in an apparent<br>hit-and-run accident 11 years<br>ago in this small town outside<br>Yakima."
3274 ],
3275 [
3276 "We are all used to IE getting<br>a monthly new security bug<br>found, but Winamp? In fact,<br>this is not the first security<br>flaw found in the application."
3277 ],
3278 [
3279 "The Apache Software Foundation<br>and the Debian Project said<br>they won't support the Sender<br>ID e-mail authentication<br>standard in their products."
3280 ],
3281 [
3282 "USATODAY.com - The newly<br>restored THX 1138 arrives on<br>DVD today with Star Wars<br>creator George Lucas' vision<br>of a Brave New World-like<br>future."
3283 ],
3284 [
3285 "The chances of scientists<br>making any one of five<br>discoveries by 2010 have been<br>hugely underestimated,<br>according to bookmakers."
3286 ],
3287 [
3288 "Deepening its commitment to<br>help corporate users create<br>SOAs (service-oriented<br>architectures) through the use<br>of Web services, IBM's Global<br>Services unit on Thursday<br>announced the formation of an<br>SOA Management Practice."
3289 ],
3290 [
3291 "Toshiba Corp. #39;s new<br>desktop-replacement multimedia<br>notebooks, introduced on<br>Tuesday, are further evidence<br>that US consumers still have<br>yet to embrace the mobility<br>offered by Intel Corp."
3292 ],
3293 [
3294 "Aregular Amazon customer,<br>Yvette Thompson has found<br>shopping online to be mostly<br>convenient and trouble-free.<br>But last month, after ordering<br>two CDs on Amazon.com, the<br>Silver Spring reader<br>discovered on her bank<br>statement that she was double-<br>charged for the \\$26.98 order.<br>And there was a \\$25 charge<br>that was a mystery."
3295 ],
3296 [
3297 "Finnish mobile giant Nokia has<br>described its new Preminet<br>solution, which it launched<br>Monday (Oct. 25), as a<br>quot;major worldwide<br>initiative."
3298 ],
3299 [
3300 " SAN FRANCISCO (Reuters) - At<br>virtually every turn, Intel<br>Corp. executives are heaping<br>praise on an emerging long-<br>range wireless technology<br>known as WiMAX, which can<br>blanket entire cities with<br>high-speed Internet access."
3301 ],
3302 [
3303 "Phishing is one of the<br>fastest-growing forms of<br>personal fraud in the world.<br>While consumers are the most<br>obvious victims, the damage<br>spreads far wider--hurting<br>companies #39; finances and<br>reputations and potentially"
3304 ],
3305 [
3306 "Reuters - The U.S. Interior<br>Department on\\Friday gave<br>final approval to a plan by<br>ConocoPhillips and\\partner<br>Anadarko Petroleum Corp. to<br>develop five tracts around\\the<br>oil-rich Alpine field on<br>Alaska's North Slope."
3307 ],
3308 [
3309 "Atari has opened the initial<br>sign-up phase of the closed<br>beta for its Dungeons amp;<br>Dragons real-time-strategy<br>title, Dragonshard."
3310 ],
3311 [
3312 "Big Blue adds features, beefs<br>up training efforts in China;<br>rival Unisys debuts new line<br>and pricing plan."
3313 ],
3314 [
3315 "South Korea's Hynix<br>Semiconductor Inc. and Swiss-<br>based STMicroelectronics NV<br>signed a joint-venture<br>agreement on Tuesday to<br>construct a memory chip<br>manufacturing plant in Wuxi,<br>about 100 kilometers west of<br>Shanghai, in China."
3316 ],
3317 [
3318 "Well, Intel did say -<br>dismissively of course - that<br>wasn #39;t going to try to<br>match AMD #39;s little dual-<br>core Opteron demo coup of last<br>week and show off a dual-core<br>Xeon at the Intel Developer<br>Forum this week and - as good<br>as its word - it didn #39;t."
3319 ],
3320 [
3321 "IT #39;S BEEN a heck of an<br>interesting two days here in<br>Iceland. I #39;ve seen some<br>interesting technology, heard<br>some inventive speeches and<br>met some people with different<br>ideas."
3322 ],
3323 [
3324 "Reuters - Two clients of<br>Germany's Postbank\\(DPBGn.DE)<br>fell for an e-mail fraud that<br>led them to reveal\\money<br>transfer codes to a bogus Web<br>site -- the first case of\\this<br>scam in German, prosecutors<br>said on Thursday."
3325 ],
3326 [
3327 "US spending on information<br>technology goods, services,<br>and staff will grow seven<br>percent in 2005 and continue<br>at a similar pace through<br>2008, according to a study<br>released Monday by Forrester<br>Research."
3328 ],
3329 [
3330 "Look, Ma, no hands! The U.S.<br>space agency's latest<br>spacecraft can run an entire<br>mission by itself. By Amit<br>Asaravala."
3331 ],
3332 [
3333 "Joining America Online,<br>EarthLink and Yahoo against<br>spamming, Microsoft Corp.<br>today announced the filing of<br>three new anti-Spam lawsuits<br>under the CAN-SPAM federal law<br>as part of its initiative in<br>solving the Spam problem for<br>Internet users worldwide."
3334 ],
3335 [
3336 "A nationwide inspection shows<br>Internet users are not as safe<br>online as they believe. The<br>inspections found most<br>consumers have no firewall<br>protection, outdated antivirus<br>software and dozens of spyware<br>programs secretly running on<br>their computers."
3337 ],
3338 [
3339 "More than three out of four<br>(76 percent) consumers are<br>experiencing an increase in<br>spoofing and phishing<br>incidents, and 35 percent<br>receive fake e-mails at least<br>once a week, according to a<br>recent national study."
3340 ],
3341 [
3342 "AP - Deep in the Atlantic<br>Ocean, undersea explorers are<br>living a safer life thanks to<br>germ-fighting clothing made in<br>Kinston."
3343 ],
3344 [
3345 "Computer Associates Monday<br>announced the general<br>availability of three<br>Unicenter performance<br>management products for<br>mainframe data management."
3346 ],
3347 [
3348 "Reuters - The European Union<br>approved on\\Wednesday the<br>first biotech seeds for<br>planting and sale across\\EU<br>territory, flying in the face<br>of widespread<br>consumer\\resistance to<br>genetically modified (GMO)<br>crops and foods."
3349 ],
3350 [
3351 "p2pnet.net News:- A Microsoft<br>UK quot;WEIGHING THE COST OF<br>LINUX VS. WINDOWS? LET #39;S<br>REVIEW THE FACTS quot;<br>magazine ad has been nailed as<br>misleading by Britain #39;s<br>Advertising Standards<br>Authority (ASA)."
3352 ],
3353 [
3354 "The retail sector overall may<br>be reporting a sluggish start<br>to the season, but holiday<br>shoppers are scooping up tech<br>goods at a brisk pace -- and<br>they're scouring the Web for<br>bargains more than ever.<br>&lt;FONT face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\" color=\"#666666\"&gt;&<br>lt;B&gt;-washingtonpost.com&lt<br>;/B&gt;&lt;/FONT&gt;"
3355 ],
3356 [
3357 "The team behind the Beagle 2<br>mission has unveiled its<br>design for a successor to the<br>British Mars lander."
3358 ],
3359 [
3360 "Survey points to popularity in<br>Europe, the Middle East and<br>Asia of receivers that skip<br>the pay TV and focus on free<br>programming."
3361 ],
3362 [
3363 "Linux publisher Red Hat Inc.<br>said Tuesday that information-<br>technology consulting firm<br>Unisys Corp. will begin<br>offering a business version of<br>the company #39;s open-source<br>operating system on its<br>servers."
3364 ],
3365 [
3366 "IBM's p5-575, a specialized<br>server geared for high-<br>performance computing, has<br>eight 1.9GHz Power5<br>processors."
3367 ],
3368 [
3369 "Reuters - British police said<br>on Monday they had\\charged a<br>man with sending hoax emails<br>to relatives of people\\missing<br>since the Asian tsunami,<br>saying their loved ones<br>had\\been confirmed dead."
3370 ],
3371 [
3372 "LOS ANGELES - On Sept. 1,<br>former secretary of<br>Agriculture Dan Glickman<br>replaced the legendary Jack<br>Valenti as president and CEO<br>of Hollywood #39;s trade<br>group, the Motion Picture<br>Association of America."
3373 ],
3374 [
3375 "The director of the National<br>Hurricane Center stays calm in<br>the midst of a storm, but<br>wants everyone in hurricane-<br>prone areas to get the message<br>from his media advisories:<br>Respect the storm's power and<br>make proper response plans."
3376 ],
3377 [
3378 "SAN FRANCISCO Several<br>California cities and<br>counties, including Los<br>Angeles and San Francisco, are<br>suing Microsoft for what could<br>amount to billions of dollars."
3379 ],
3380 [
3381 "Google plans to release a<br>version of its desktop search<br>tool for computers that run<br>Apple Computer #39;s Mac<br>operating system, Google #39;s<br>chief executive, Eric Schmidt,<br>said Friday."
3382 ],
3383 [
3384 "AMD : sicurezza e prestazioni<br>ottimali con il nuovo<br>processore mobile per notebook<br>leggeri e sottili; Acer Inc.<br>preme sull #39;acceleratore<br>con il nuovo notebook a<br>marchio Ferrari."
3385 ],
3386 [
3387 "Firefox use around the world<br>climbed 34 percent in the last<br>month, according to a report<br>published by Web analytics<br>company WebSideStory Monday."
3388 ],
3389 [
3390 "If a plastic card that gives<br>you credit for something you<br>don't want isn't your idea of<br>a great gift, you can put it<br>up for sale or swap."
3391 ],
3392 [
3393 "WASHINGTON Aug. 17, 2004<br>Scientists are planning to<br>take the pulse of the planet<br>and more in an effort to<br>improve weather forecasts,<br>predict energy needs months in<br>advance, anticipate disease<br>outbreaks and even tell<br>fishermen where the catch will<br>be ..."
3394 ],
3395 [
3396 "New communications technology<br>could spawn future products.<br>Could your purse tell you to<br>bring an umbrella?"
3397 ],
3398 [
3399 "SAP has won a \\$35 million<br>contract to install its human<br>resources software for the US<br>Postal Service. The NetWeaver-<br>based system will replace the<br>Post Office #39;s current<br>25-year-old legacy application"
3400 ],
3401 [
3402 "NewsFactor - For years,<br>companies large and small have<br>been convinced that if they<br>want the sophisticated<br>functionality of enterprise-<br>class software like ERP and<br>CRM systems, they must buy<br>pre-packaged applications.<br>And, to a large extent, that<br>remains true."
3403 ],
3404 [
3405 "Following in the footsteps of<br>the RIAA, the MPAA (Motion<br>Picture Association of<br>America) announced that they<br>have began filing lawsuits<br>against people who use peer-<br>to-peer software to download<br>copyrighted movies off the<br>Internet."
3406 ],
3407 [
3408 "MacCentral - At a special<br>music event featuring Bono and<br>The Edge from rock group U2<br>held on Tuesday, Apple took<br>the wraps off the iPod Photo,<br>a color iPod available in 40GB<br>or 60GB storage capacities.<br>The company also introduced<br>the iPod U2, a special edition<br>of Apple's 20GB player clad in<br>black, equipped with a red<br>Click Wheel and featuring<br>engraved U2 band member<br>signatures. The iPod Photo is<br>available immediately, and<br>Apple expects the iPod U2 to<br>ship in mid-November."
3409 ],
3410 [
3411 "Reuters - Oracle Corp is<br>likely to win clearance\\from<br>the European Commission for<br>its hostile #36;7.7<br>billion\\takeover of rival<br>software firm PeopleSoft Inc.,<br>a source close\\to the<br>situation said on Friday."
3412 ],
3413 [
3414 "IBM (Quote, Chart) said it<br>would spend a quarter of a<br>billion dollars over the next<br>year and a half to grow its<br>RFID (define) business."
3415 ],
3416 [
3417 "SPACE.com - NASA released one<br>of the best pictures ever made<br>of Saturn's moon Titan as the<br>Cassini spacecraft begins a<br>close-up inspection of the<br>satellite today. Cassini is<br>making the nearest flyby ever<br>of the smog-shrouded moon."
3418 ],
3419 [
3420 "ANNAPOLIS ROYAL, NS - Nova<br>Scotia Power officials<br>continued to keep the sluice<br>gates open at one of the<br>utility #39;s hydroelectric<br>plants Wednesday in hopes a<br>wayward whale would leave the<br>area and head for the open<br>waters of the Bay of Fundy."
3421 ],
3422 [
3423 "In fact, Larry Ellison<br>compares himself to the<br>warlord, according to<br>PeopleSoft's former CEO,<br>defending previous remarks he<br>made."
3424 ],
3425 [
3426 "You can empty your pockets of<br>change, take off your belt and<br>shoes and stick your keys in<br>the little tray. But if you've<br>had radiation therapy<br>recently, you still might set<br>off Homeland Security alarms."
3427 ],
3428 [
3429 "SEOUL, Oct 19 Asia Pulse -<br>LG.Philips LCD Co.<br>(KSE:034220), the world #39;s<br>second-largest maker of liquid<br>crystal display (LCD), said<br>Tuesday it has developed the<br>world #39;s largest organic<br>light emitting diode"
3430 ],
3431 [
3432 "Security experts warn of<br>banner ads with a bad attitude<br>--and a link to malicious<br>code. Also: Phishers, be gone."
3433 ],
3434 [
3435 "com October 15, 2004, 5:11 AM<br>PT. Wood paneling and chrome<br>made your dad #39;s station<br>wagon look like a million<br>bucks, and they might also be<br>just the ticket for Microsoft<br>#39;s fledgling"
3436 ],
3437 [
3438 "Computer Associates<br>International yesterday<br>reported a 6 increase in<br>revenue during its second<br>fiscal quarter, but posted a<br>\\$94 million loss after paying<br>to settle government<br>investigations into the<br>company, it said yesterday."
3439 ],
3440 [
3441 "PC World - Send your video<br>throughout your house--<br>wirelessly--with new gateways<br>and media adapters."
3442 ],
3443 [
3444 "Links to this week's topics<br>from search engine forums<br>across the web: New MSN Search<br>Goes LIVE in Beta - Microsoft<br>To Launch New Search Engine -<br>Google Launches 'Google<br>Advertising Professionals' -<br>Organic vs Paid Traffic ROI? -<br>Making Money With AdWords? -<br>Link Building 101"
3445 ],
3446 [
3447 "Eight conservation groups are<br>fighting the US government<br>over a plan to poison<br>thousands of prairie dogs in<br>the grasslands of South<br>Dakota, saying wildlife should<br>not take a backseat to<br>ranching interests."
3448 ],
3449 [
3450 "Siding with chip makers,<br>Microsoft said it won't charge<br>double for its per-processor<br>licenses when dual-core chips<br>come to market next year."
3451 ],
3452 [
3453 "IBM and the Spanish government<br>have introduced a new<br>supercomputer they hope will<br>be the most powerful in<br>Europe, and one of the 10 most<br>powerful in the world."
3454 ],
3455 [
3456 "Mozilla's new web browser is<br>smart, fast and user-friendly<br>while offering a slew of<br>advanced, customizable<br>functions. By Michelle Delio."
3457 ],
3458 [
3459 "originally offered on notebook<br>PCs -- to its Opteron 32- and<br>64-bit x86 processors for<br>server applications. The<br>technology will help servers<br>to run"
3460 ],
3461 [
3462 "MacCentral - After Apple<br>unveiled the iMac G5 in Paris<br>this week, Vice President of<br>Hardware Product Marketing<br>Greg Joswiak gave Macworld<br>editors a guided tour of the<br>desktop's new design. Among<br>the topics of conversation:<br>the iMac's cooling system, why<br>pre-installed Bluetooth<br>functionality and FireWire 800<br>were left out, and how this<br>new model fits in with Apple's<br>objectives."
3463 ],
3464 [
3465 "We #39;ve known about<br>quot;strained silicon quot;<br>for a while--but now there<br>#39;s a better way to do it.<br>Straining silicon improves<br>chip performance."
3466 ],
3467 [
3468 "This week, Sir Richard Branson<br>announced his new company,<br>Virgin Galactic, has the<br>rights to the first commercial<br>flights into space."
3469 ],
3470 [
3471 "71-inch HDTV comes with a home<br>stereo system and components<br>painted in 24-karat gold."
3472 ],
3473 [
3474 "MacCentral - RealNetworks Inc.<br>said on Tuesday that it has<br>sold more than a million songs<br>at its online music store<br>since slashing prices last<br>week as part of a limited-time<br>sale aimed at growing the user<br>base of its new digital media<br>software."
3475 ],
3476 [
3477 "With the presidential election<br>less than six weeks away,<br>activists and security experts<br>are ratcheting up concern over<br>the use of touch-screen<br>machines to cast votes.<br>&lt;FONT face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-washingtonpost.com&l<br>t;/B&gt;&lt;/FONT&gt;"
3478 ],
3479 [
3480 "NEW YORK, September 14 (New<br>Ratings) - Yahoo! Inc<br>(YHOO.NAS) has agreed to<br>acquire Musicmatch Inc, a<br>privately held digital music<br>software company, for about<br>\\$160 million in cash."
3481 ],
3482 [
3483 "Gov. Rod Blagojevich plans to<br>propose a ban Thursday on the<br>sale of violent and sexually<br>explicit video games to<br>minors, something other states<br>have tried with little<br>success."
3484 ],
3485 [
3486 "A cable channel plans to<br>resurrect each of the 1,230<br>regular-season games listed on<br>the league's defunct 2004-2005<br>schedule by setting them in<br>motion on a video game<br>console."
3487 ],
3488 [
3489 "SiliconValley.com - When<br>\"Halo\" became a smash video<br>game hit following Microsoft's<br>launch of the Xbox console in<br>2001, it was a no-brainer that<br>there would be a sequel to the<br>science fiction shoot-em-up."
3490 ],
3491 [
3492 "PARIS -- The city of Paris<br>intends to reduce its<br>dependence on software<br>suppliers with \"de facto<br>monopolies,\" but considers an<br>immediate switch of its 17,000<br>desktops to open source<br>software too costly, it said<br>Wednesday."
3493 ],
3494 [
3495 "The vast majority of consumers<br>are unaware that an Apple iPod<br>digital music player only<br>plays proprietary iTunes<br>files, while a smaller<br>majority agree that it is<br>within RealNetworks #39;<br>rights to develop a program<br>that will make its music files<br>compatible"
3496 ],
3497 [
3498 " PROVIDENCE, R.I. (Reuters) -<br>You change the oil in your car<br>every 5,000 miles or so. You<br>clean your house every week or<br>two. Your PC needs regular<br>maintenance as well --<br>especially if you're using<br>Windows and you spend a lot of<br>time on the Internet."
3499 ],
3500 [
3501 "The Motley Fool - Here's<br>something you don't see every<br>day -- the continuing brouhaha<br>between Oracle (Nasdaq: ORCL -<br>News) and PeopleSoft (Nasdaq:<br>PSFT - News) being a notable<br>exception. South Africa's<br>Harmony Gold Mining Company<br>(NYSE: HMY - News) has<br>announced a hostile takeover<br>bid to acquire fellow South<br>African miner Gold Fields<br>Limited (NYSE: GFI - News).<br>The transaction, if it takes<br>place, would be an all-stock<br>acquisition, with Harmony<br>issuing 1.275 new shares in<br>payment for each share of Gold<br>Fields. The deal would value<br>Gold Fields at more than<br>#36;8 billion. ..."
3502 ],
3503 [
3504 "SPACE.com - NASA's Mars \\rover<br>Opportunity nbsp;will back its<br>\\way out of a nbsp;crater it<br>has spent four months<br>exploring after reaching<br>terrain nbsp;that appears \\too<br>treacherous to tread. nbsp;"
3505 ],
3506 [
3507 "Sony Corp. announced Tuesday a<br>new 20 gigabyte digital music<br>player with MP3 support that<br>will be available in Great<br>Britain and Japan before<br>Christmas and elsewhere in<br>Europe in early 2005."
3508 ],
3509 [
3510 "TOKYO (AP) -- The electronics<br>and entertainment giant Sony<br>Corp. (SNE) is talking with<br>Wal-Mart Stores Inc..."
3511 ],
3512 [
3513 "After an unprecedented span of<br>just five days, SpaceShipOne<br>is ready for a return trip to<br>space on Monday, its final<br>flight to clinch a \\$10<br>million prize."
3514 ],
3515 [
3516 "Hi-tech monitoring of<br>livestock at pig farms could<br>help improve the animal growth<br>process and reduce costs."
3517 ],
3518 [
3519 "Cable amp; Wireless plc<br>(NYSE: CWP - message board) is<br>significantly ramping up its<br>investment in local loop<br>unbundling (LLU) in the UK,<br>and it plans to spend up to 85<br>million (\\$152."
3520 ],
3521 [
3522 "AFP - Microsoft said that it<br>had launched a new desktop<br>search tool that allows<br>personal computer users to<br>find documents or messages on<br>their PCs."
3523 ],
3524 [
3525 "The three largest computer<br>makers spearheaded a program<br>today designed to standardize<br>working conditions for their<br>non-US workers."
3526 ],
3527 [
3528 "Description: Illinois Gov. Rod<br>Blagojevich is backing state<br>legislation that would ban<br>sales or rentals of video<br>games with graphic sexual or<br>violent content to children<br>under 18."
3529 ],
3530 [
3531 "Are you bidding on keywords<br>through Overture's Precision<br>Match, Google's AdWords or<br>another pay-for-placement<br>service? If so, you're<br>eligible to participate in<br>their contextual advertising<br>programs."
3532 ],
3533 [
3534 "Nobel Laureate Wilkins, 87,<br>played an important role in<br>the discovery of the double<br>helix structure of DNA, the<br>molecule that carries our<br>quot;life code quot;,<br>Kazinform refers to BBC News."
3535 ],
3536 [
3537 "A number of signs point to<br>increasing demand for tech<br>workers, but not all the<br>clouds have been driven away."
3538 ],
3539 [
3540 "Microsoft Corp. (MSFT.O:<br>Quote, Profile, Research)<br>filed nine new lawsuits<br>against spammers who send<br>unsolicited e-mail, including<br>an e-mail marketing Web<br>hosting company, the world<br>#39;s largest software maker<br>said on Thursday."
3541 ],
3542 [
3543 "The rocket plane SpaceShipOne<br>is just one flight away from<br>claiming the Ansari X-Prize, a<br>\\$10m award designed to kick-<br>start private space travel."
3544 ],
3545 [
3546 "Reuters - Three American<br>scientists won the\\2004 Nobel<br>physics prize on Tuesday for<br>showing how tiny<br>quark\\particles interact,<br>helping to explain everything<br>from how a\\coin spins to how<br>the universe was built."
3547 ],
3548 [
3549 "AP - Sharp Electronics Corp.<br>plans to stop selling its<br>Linux-based handheld computer<br>in the United States, another<br>sign of the slowing market for<br>personal digital assistants."
3550 ],
3551 [
3552 "Reuters - Glaciers once held<br>up by a floating\\ice shelf off<br>Antarctica are now sliding off<br>into the sea --\\and they are<br>going fast, scientists said on<br>Tuesday."
3553 ],
3554 [
3555 "AP - Warning lights flashed<br>atop four police cars as the<br>caravan wound its way up the<br>driveway in a procession fit<br>for a presidential candidate.<br>At long last, Azy and Indah<br>had arrived. They even flew<br>through a hurricane to get<br>here."
3556 ],
3557 [
3558 "\\Female undergraduates work<br>harder and are more open-<br>minded than males, leading to<br>better results, say<br>scientists."
3559 ],
3560 [
3561 "The United Nations annual<br>World Robotics Survey predicts<br>the use of robots around the<br>home will surge seven-fold by<br>2007. The boom is expected to<br>be seen in robots that can mow<br>lawns and vacuum floors, among<br>other chores."
3562 ],
3563 [
3564 "Want to dive deep -- really<br>deep -- into the technical<br>literature about search<br>engines? Here's a road map to<br>some of the best web<br>information retrieval<br>resources available online."
3565 ],
3566 [
3567 "Reuters - Ancel Keys, a<br>pioneer in public health\\best<br>known for identifying the<br>connection between<br>a\\cholesterol-rich diet and<br>heart disease, has died."
3568 ],
3569 [
3570 "Reuters - T-Mobile USA, the<br>U.S. wireless unit\\of Deutsche<br>Telekom AG (DTEGn.DE), does<br>not expect to offer\\broadband<br>mobile data services for at<br>least the next two years,\\its<br>chief executive said on<br>Thursday."
3571 ],
3572 [
3573 "Verizon Communications is<br>stepping further into video as<br>a way to compete against cable<br>companies."
3574 ],
3575 [
3576 "Oracle Corp. plans to release<br>the latest version of its CRM<br>(customer relationship<br>management) applications<br>within the next two months, as<br>part of an ongoing update of<br>its E-Business Suite."
3577 ],
3578 [
3579 "Hosted CRM service provider<br>Salesforce.com took another<br>step forward last week in its<br>strategy to build an online<br>ecosystem of vendors that<br>offer software as a service."
3580 ],
3581 [
3582 "washingtonpost.com -<br>Technology giants IBM and<br>Hewlett-Packard are injecting<br>hundreds of millions of<br>dollars into radio-frequency<br>identification technology,<br>which aims to advance the<br>tracking of items from ho-hum<br>bar codes to smart tags packed<br>with data."
3583 ],
3584 [
3585 "The Norfolk Broads are on<br>their way to getting a clean<br>bill of ecological health<br>after a century of stagnation."
3586 ],
3587 [
3588 "For the second time this year,<br>an alliance of major Internet<br>providers - including Atlanta-<br>based EarthLink -iled a<br>coordinated group of lawsuits<br>aimed at stemming the flood of<br>online junk mail."
3589 ],
3590 [
3591 "Via Technologies has released<br>a version of the open-source<br>Xine media player that is<br>designed to take advantage of<br>hardware digital video<br>acceleration capabilities in<br>two of the company #39;s PC<br>chipsets, the CN400 and<br>CLE266."
3592 ],
3593 [
3594 "SCO Group has a plan to keep<br>itself fit enough to continue<br>its legal battles against<br>Linux and to develop its Unix-<br>on-Intel operating systems."
3595 ],
3596 [
3597 "New software helps corporate<br>travel managers track down<br>business travelers who<br>overspend. But it also poses a<br>dilemma for honest travelers<br>who are only trying to save<br>money."
3598 ],
3599 [
3600 "NATO Secretary-General Jaap de<br>Hoop Scheffer has called a<br>meeting of NATO states and<br>Russia on Tuesday to discuss<br>the siege of a school by<br>Chechen separatists in which<br>more than 335 people died, a<br>NATO spokesman said."
3601 ],
3602 [
3603 "AFP - Senior executives at<br>business software group<br>PeopleSoft unanimously<br>recommended that its<br>shareholders reject a 8.8<br>billion dollar takeover bid<br>from Oracle Corp, PeopleSoft<br>said in a statement Wednesday."
3604 ],
3605 [
3606 "Reuters - Neolithic people in<br>China may have\\been the first<br>in the world to make wine,<br>according to\\scientists who<br>have found the earliest<br>evidence of winemaking\\from<br>pottery shards dating from<br>7,000 BC in northern China."
3607 ],
3608 [
3609 " TOKYO (Reuters) - Electronics<br>conglomerate Sony Corp.<br>unveiled eight new flat-screen<br>televisions on Thursday in a<br>product push it hopes will<br>help it secure a leading 35<br>percent of the domestic<br>market in the key month of<br>December."
3610 ],
3611 [
3612 "Donald Halsted, one target of<br>a class-action suit alleging<br>financial improprieties at<br>bankrupt Polaroid, officially<br>becomes CFO."
3613 ],
3614 [
3615 "The 7710 model features a<br>touch screen, pen input, a<br>digital camera, an Internet<br>browser, a radio, video<br>playback and streaming and<br>recording capabilities, the<br>company said."
3616 ],
3617 [
3618 "A top Red Hat executive has<br>attacked the open-source<br>credentials of its sometime<br>business partner Sun<br>Microsystems. In a Web log<br>posting Thursday, Michael<br>Tiemann, Red Hat #39;s vice<br>president of open-source<br>affairs"
3619 ],
3620 [
3621 "MySQL developers turn to an<br>unlikely source for database<br>tool: Microsoft. Also: SGI<br>visualizes Linux, and the<br>return of Java veteran Kim<br>Polese."
3622 ],
3623 [
3624 "Dell Inc. said its profit<br>surged 25 percent in the third<br>quarter as the world's largest<br>personal computer maker posted<br>record sales due to rising<br>technology spending in the<br>corporate and government<br>sectors in the United States<br>and abroad."
3625 ],
3626 [
3627 "Reuters - SBC Communications<br>said on Monday it\\would offer<br>a television set-top box that<br>can handle music,\\photos and<br>Internet downloads, part of<br>SBC's efforts to expand\\into<br>home entertainment."
3628 ],
3629 [
3630 " WASHINGTON (Reuters) - Hopes<br>-- and worries -- that U.S.<br>regulators will soon end the<br>ban on using wireless phones<br>during U.S. commercial flights<br>are likely at least a year or<br>two early, government<br>officials and analysts say."
3631 ],
3632 [
3633 "After a year of pilots and<br>trials, Siebel Systems jumped<br>with both feet into the SMB<br>market Tuesday, announcing a<br>new approach to offer Siebel<br>Professional CRM applications<br>to SMBs (small and midsize<br>businesses) -- companies with<br>revenues up to about \\$500<br>million."
3634 ],
3635 [
3636 "Intel won't release a 4-GHz<br>version of its flagship<br>Pentium 4 product, having<br>decided instead to realign its<br>engineers around the company's<br>new design priorities, an<br>Intel spokesman said today.<br>\\\\"
3637 ],
3638 [
3639 "AP - A Soyuz spacecraft<br>carrying two Russians and an<br>American rocketed closer<br>Friday to its docking with the<br>international space station,<br>where the current three-man<br>crew made final departure<br>preparations."
3640 ],
3641 [
3642 "Scientists have manipulated<br>carbon atoms to create a<br>material that could be used to<br>create light-based, versus<br>electronic, switches. The<br>material could lead to a<br>supercharged Internet based<br>entirely on light, scientists<br>say."
3643 ],
3644 [
3645 "LOS ANGELES (Reuters)<br>Qualcomm has dropped an \\$18<br>million claim for monetary<br>damages from rival Texas<br>Instruments for publicly<br>discussing terms of a<br>licensing pact, a TI<br>spokeswoman confirmed Tuesday."
3646 ],
3647 [
3648 "Hewlett-Packard is the latest<br>IT vendor to try blogging. But<br>analysts wonder if the weblog<br>trend is the 21st century<br>equivalent of CB radios, which<br>made a big splash in the 1970s<br>before fading."
3649 ],
3650 [
3651 "The scientists behind Dolly<br>the sheep apply for a license<br>to clone human embryos. They<br>want to take stem cells from<br>the embryos to study Lou<br>Gehrig's disease."
3652 ],
3653 [
3654 "Some of the silly tunes<br>Japanese pay to download to<br>use as the ring tone for their<br>mobile phones sure have their<br>knockers, but it #39;s for<br>precisely that reason that a<br>well-known counselor is raking<br>it in at the moment, according<br>to Shukan Gendai (10/2)."
3655 ],
3656 [
3657 "IBM announced yesterday that<br>it will invest US\\$250 million<br>(S\\$425 million) over the next<br>five years and employ 1,000<br>people in a new business unit<br>to support products and<br>services related to sensor<br>networks."
3658 ],
3659 [
3660 "AP - Microsoft Corp. goes into<br>round two Friday of its battle<br>to get the European Union's<br>sweeping antitrust ruling<br>lifted having told a judge<br>that it had been prepared<br>during settlement talks to<br>share more software code with<br>its rivals than the EU<br>ultimately demanded."
3661 ],
3662 [
3663 "AP - Sears, Roebuck and Co.,<br>which has successfully sold<br>its tools and appliances on<br>the Web, is counting on having<br>the same magic with bedspreads<br>and sweaters, thanks in part<br>to expertise gained by its<br>purchase of Lands' End Inc."
3664 ],
3665 [
3666 "Austin police are working with<br>overseas officials to bring<br>charges against an English man<br>for sexual assault of a child,<br>a second-degree felony."
3667 ],
3668 [
3669 "San Francisco<br>developer/publisher lands<br>coveted Paramount sci-fi<br>license, \\$6.5 million in<br>funding on same day. Although<br>it is less than two years old,<br>Perpetual Entertainment has<br>acquired one of the most<br>coveted sci-fi licenses on the<br>market."
3670 ],
3671 [
3672 "By KELLY WIESE JEFFERSON<br>CITY, Mo. (AP) -- Missouri<br>will allow members of the<br>military stationed overseas to<br>return absentee ballots via<br>e-mail, raising concerns from<br>Internet security experts<br>about fraud and ballot<br>secrecy..."
3673 ],
3674 [
3675 "Avis Europe PLC has dumped a<br>new ERP system based on<br>software from PeopleSoft Inc.<br>before it was even rolled out,<br>citing substantial delays and<br>higher-than-expected costs."
3676 ],
3677 [
3678 "Yahoo #39;s (Quote, Chart)<br>public embrace of the RSS<br>content syndication format<br>took a major leap forward with<br>the release of a revamped My<br>Yahoo portal seeking to<br>introduce the technology to<br>mainstream consumers."
3679 ],
3680 [
3681 "TOKYO (AP) -- Japanese<br>electronics and entertainment<br>giant Sony Corp. (SNE) plans<br>to begin selling a camcorder<br>designed for consumers that<br>takes video at digital high-<br>definition quality and is<br>being priced at about<br>\\$3,600..."
3682 ],
3683 [
3684 "In a meeting of the cinematic<br>with the scientific, Hollywood<br>helicopter stunt pilots will<br>try to snatch a returning NASA<br>space probe out of the air<br>before it hits the ground."
3685 ],
3686 [
3687 "Legend has it (incorrectly, it<br>seems) that infamous bank<br>robber Willie Sutton, when<br>asked why banks were his<br>favorite target, responded,<br>quot;Because that #39;s where<br>the money is."
3688 ],
3689 [
3690 "Pfizer, GlaxoSmithKline and<br>Purdue Pharma are the first<br>drugmakers willing to take the<br>plunge and use radio frequency<br>identification technology to<br>protect their US drug supply<br>chains from counterfeiters."
3691 ],
3692 [
3693 "Search any fee-based digital<br>music service for the best-<br>loved musical artists of the<br>20th century and most of the<br>expected names show up."
3694 ],
3695 [
3696 "America Online Inc. is<br>packaging new features to<br>combat viruses, spam and<br>spyware in response to growing<br>online security threats.<br>Subscribers will be able to<br>get the free tools"
3697 ],
3698 [
3699 "CAPE CANAVERAL-- NASA aims to<br>launch its first post-Columbia<br>shuttle mission during a<br>shortened nine-day window<br>March, and failure to do so<br>likely would delay a planned<br>return to flight until at<br>least May."
3700 ],
3701 [
3702 "The Chinese city of Beijing<br>has cancelled an order for<br>Microsoft software, apparently<br>bowing to protectionist<br>sentiment. The deal has come<br>under fire in China, which is<br>trying to build a domestic<br>software industry."
3703 ],
3704 [
3705 "Apple says it will deliver its<br>iTunes music service to more<br>European countries next month.<br>Corroborating several reports<br>in recent months, Reuters is<br>reporting today that Apple<br>Computer is planning the next"
3706 ],
3707 [
3708 "Reuters - Motorola Inc., the<br>world's\\second-largest mobile<br>phone maker, said on Tuesday<br>it expects\\to sustain strong<br>sales growth in the second<br>half of 2004\\thanks to new<br>handsets with innovative<br>designs and features."
3709 ],
3710 [
3711 "PRAGUE, Czech Republic --<br>Eugene Cernan, the last man to<br>walk on the moon during the<br>final Apollo landing, said<br>Thursday he doesn't expect<br>space tourism to become<br>reality in the near future,<br>despite a strong demand.<br>Cernan, now 70, who was<br>commander of NASA's Apollo 17<br>mission and set foot on the<br>lunar surface in December 1972<br>during his third space flight,<br>acknowledged that \"there are<br>many people interested in<br>space tourism.\" But the<br>former astronaut said he<br>believed \"we are a long way<br>away from the day when we can<br>send a bus of tourists to the<br>moon.\" He spoke to reporters<br>before being awarded a medal<br>by the Czech Academy of<br>Sciences for his contribution<br>to science..."
3712 ],
3713 [
3714 "Never shy about entering a<br>market late, Microsoft Corp.<br>is planning to open the<br>virtual doors of its long-<br>planned Internet music store<br>next week. &lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-Leslie<br>Walker&lt;/B&gt;&lt;/FONT&gt;"
3715 ],
3716 [
3717 "AP - On his first birthday<br>Thursday, giant panda cub Mei<br>Sheng delighted visitors by<br>playing for the first time in<br>snow delivered to him at the<br>San Diego Zoo. He also sat on<br>his ice cake, wrestled with<br>his mom, got his coat<br>incredibly dirty, and didn't<br>read any of the more than 700<br>birthday wishes sent him via<br>e-mail from as far away as<br>Ireland and Argentina."
3718 ],
3719 [
3720 "AP - Researchers put a<br>satellite tracking device on a<br>15-foot shark that appeared to<br>be lost in shallow water off<br>Cape Cod, the first time a<br>great white has been tagged<br>that way in the Atlantic."
3721 ],
3722 [
3723 "The Windows Future Storage<br>(WinFS) technology that got<br>cut out of Windows<br>quot;Longhorn quot; is in<br>serious trouble, and not just<br>the hot water a feature might<br>encounter for missing its<br>intended production vehicle."
3724 ],
3725 [
3726 "washingtonpost.com - Let the<br>games begin. Not the Olympics<br>again, but the all-out battle<br>between video game giants Sony<br>Corp. and Nintendo Co. Ltd.<br>The two Japanese companies are<br>rolling out new gaming<br>consoles, but Nintendo has<br>beaten Sony to the punch by<br>announcing an earlier launch<br>date for its new hand-held<br>game player."
3727 ],
3728 [
3729 "AP - Echoing what NASA<br>officials said a day earlier,<br>a Russian space official on<br>Friday said the two-man crew<br>on the international space<br>station could be forced to<br>return to Earth if a planned<br>resupply flight cannot reach<br>them with food supplies later<br>this month."
3730 ],
3731 [
3732 "InfoWorld - SANTA CLARA,<br>CALIF. -- Accommodating large<br>patch sets in Linux is<br>expected to mean forking off<br>of the 2.7 version of the<br>platform to accommodate these<br>changes, according to Andrew<br>Morton, lead maintainer of the<br>Linux kernel for Open Source<br>Development Labs (OSDL)."
3733 ],
3734 [
3735 "AMSTERDAM The mobile phone<br>giants Vodafone and Nokia<br>teamed up on Thursday to<br>simplify cellphone software<br>written with the Java computer<br>language."
3736 ],
3737 [
3738 "The overall Linux market is<br>far larger than previous<br>estimates show, a new study<br>says. In an analysis of the<br>Linux market released late<br>Tuesday, market research firm<br>IDC estimated that the Linux<br>market -- including"
3739 ],
3740 [
3741 "By PAUL ELIAS SAN FRANCISCO<br>(AP) -- Several California<br>cities and counties, including<br>San Francisco and Los Angeles,<br>sued Microsoft Corp. (MSFT) on<br>Friday, accusing the software<br>giant of illegally charging<br>inflated prices for its<br>products because of monopoly<br>control of the personal<br>computer operating system<br>market..."
3742 ],
3743 [
3744 "Public opinion of the database<br>giant sinks to 12-year low, a<br>new report indicates."
3745 ],
3746 [
3747 "For spammers, it #39;s been a<br>summer of love. Two newly<br>issued reports tracking the<br>circulation of unsolicited<br>e-mails say pornographic spam<br>dominated this summer, nearly<br>all of it originating from<br>Internet addresses in North<br>America."
3748 ],
3749 [
3750 "Microsoft portrayed its<br>Longhorn decision as a<br>necessary winnowing to hit the<br>2006 timetable. The<br>announcement on Friday,<br>Microsoft executives insisted,<br>did not point to a setback in<br>software"
3751 ],
3752 [
3753 "A problem in the Service Pack<br>2 update for Windows XP may<br>keep owners of AMD-based<br>computers from using the long-<br>awaited security package,<br>according to Microsoft."
3754 ],
3755 [
3756 "Five years ago, running a<br>telephone company was an<br>immensely profitable<br>proposition. Since then, those<br>profits have inexorably<br>declined, and now that decline<br>has taken another gut-<br>wrenching dip."
3757 ],
3758 [
3759 "NEW YORK - The litigious<br>Recording Industry Association<br>of America (RIAA) is involved<br>in another legal dispute with<br>a P-to-P (peer-to-peer)<br>technology maker, but this<br>time, the RIAA is on defense.<br>Altnet Inc. filed a lawsuit<br>Wednesday accusing the RIAA<br>and several of its partners of<br>infringing an Altnet patent<br>covering technology for<br>identifying requested files on<br>a P-to-P network."
3760 ],
3761 [
3762 "For two weeks before MTV<br>debuted U2 #39;s video for the<br>new single quot;Vertigo,<br>quot; fans had a chance to see<br>the band perform the song on<br>TV -- in an iPod commercial."
3763 ],
3764 [
3765 "Oct. 26, 2004 - The US-<br>European spacecraft Cassini-<br>Huygens on Tuesday made a<br>historic flyby of Titan,<br>Saturn #39;s largest moon,<br>passing so low as to almost<br>touch the fringes of its<br>atmosphere."
3766 ],
3767 [
3768 "Reuters - A volcano in central<br>Japan sent smoke and\\ash high<br>into the sky and spat out<br>molten rock as it erupted\\for<br>a fourth straight day on<br>Friday, but experts said the<br>peak\\appeared to be quieting<br>slightly."
3769 ],
3770 [
3771 "Shares of Google Inc. made<br>their market debut on Thursday<br>and quickly traded up 19<br>percent at \\$101.28. The Web<br>search company #39;s initial<br>public offering priced at \\$85"
3772 ],
3773 [
3774 "Reuters - Global warming is<br>melting\\Ecuador's cherished<br>mountain glaciers and could<br>cause several\\of them to<br>disappear over the next two<br>decades, Ecuadorean and\\French<br>scientists said on Wednesday."
3775 ],
3776 [
3777 "Rather than tell you, Dan<br>Kranzler chooses instead to<br>show you how he turned Mforma<br>into a worldwide publisher of<br>video games, ringtones and<br>other hot downloads for mobile<br>phones."
3778 ],
3779 [
3780 "Not being part of a culture<br>with a highly developed<br>language, could limit your<br>thoughts, at least as far as<br>numbers are concerned, reveals<br>a new study conducted by a<br>psychologist at the Columbia<br>University in New York."
3781 ],
3782 [
3783 "CAMBRIDGE, Mass. A native of<br>Red Oak, Iowa, who was a<br>pioneer in astronomy who<br>proposed the quot;dirty<br>snowball quot; theory for the<br>substance of comets, has died."
3784 ],
3785 [
3786 "A Portuguese-sounding version<br>of the virus has appeared in<br>the wild. Be wary of mail from<br>Manaus."
3787 ],
3788 [
3789 "Reuters - Hunters soon may be<br>able to sit at\\their computers<br>and blast away at animals on a<br>Texas ranch via\\the Internet,<br>a prospect that has state<br>wildlife officials up\\in arms."
3790 ],
3791 [
3792 "The Bedminster-based company<br>yesterday said it was pushing<br>into 21 new markets with the<br>service, AT amp;T CallVantage,<br>and extending an introductory<br>rate offer until Sept. 30. In<br>addition, the company is<br>offering in-home installation<br>of up to five ..."
3793 ],
3794 [
3795 "Samsung Electronics Co., Ltd.<br>has developed a new LCD<br>(liquid crystal display)<br>technology that builds a touch<br>screen into the display, a<br>development that could lead to<br>thinner and cheaper display<br>panels for mobile phones, the<br>company said Tuesday."
3796 ],
3797 [
3798 "The message against illegally<br>copying CDs for uses such as<br>in file-sharing over the<br>Internet has widely sunk in,<br>said the company in it #39;s<br>recent announcement to drop<br>the Copy-Control program."
3799 ],
3800 [
3801 "Reuters - California will<br>become hotter and\\drier by the<br>end of the century, menacing<br>the valuable wine and\\dairy<br>industries, even if dramatic<br>steps are taken to curb\\global<br>warming, researchers said on<br>Monday."
3802 ],
3803 [
3804 "IBM said Monday that it won a<br>500 million (AUD\\$1.25<br>billion), seven-year services<br>contract to help move UK bank<br>Lloyds TBS from its<br>traditional voice<br>infrastructure to a converged<br>voice and data network."
3805 ],
3806 [
3807 "Space shuttle astronauts will<br>fly next year without the<br>ability to repair in orbit the<br>type of damage that destroyed<br>the Columbia vehicle in<br>February 2003."
3808 ],
3809 [
3810 "By cutting WinFS from Longhorn<br>and indefinitely delaying the<br>storage system, Microsoft<br>Corp. has also again delayed<br>the Microsoft Business<br>Framework (MBF), a new Windows<br>programming layer that is<br>closely tied to WinFS."
3811 ],
3812 [
3813 "Samsung's new SPH-V5400 mobile<br>phone sports a built-in<br>1-inch, 1.5-gigabyte hard disk<br>that can store about 15 times<br>more data than conventional<br>handsets, Samsung said."
3814 ],
3815 [
3816 "Vendor says it #39;s<br>developing standards-based<br>servers in various form<br>factors for the telecom<br>market. By Darrell Dunn.<br>Hewlett-Packard on Thursday<br>unveiled plans to create a<br>portfolio of products and<br>services"
3817 ],
3818 [
3819 "Ziff Davis - The company this<br>week will unveil more programs<br>and technologies designed to<br>ease users of its high-end<br>servers onto its Integrity<br>line, which uses Intel's<br>64-bit Itanium processor."
3820 ],
3821 [
3822 "The Mac maker says it will<br>replace about 28,000 batteries<br>in one model of PowerBook G4<br>and tells people to stop using<br>the notebook."
3823 ],
3824 [
3825 "Millions of casual US anglers<br>are having are larger than<br>appreciated impact on sea fish<br>stocks, scientists claim."
3826 ],
3827 [
3828 "Microsoft Xbox Live traffic on<br>service provider networks<br>quadrupled following the<br>November 9th launch of Halo-II<br>-- which set entertainment<br>industry records by selling<br>2.4-million units in the US<br>and Canada on the first day of<br>availability, driving cash"
3829 ],
3830 [
3831 "Lawyers in a California class<br>action suit against Microsoft<br>will get less than half the<br>payout they had hoped for. A<br>judge in San Francisco ruled<br>that the attorneys will<br>collect only \\$112."
3832 ],
3833 [
3834 "Google Browser May Become<br>Reality\\\\There has been much<br>fanfare in the Mozilla fan<br>camps about the possibility of<br>Google using Mozilla browser<br>technology to produce a<br>GBrowser - the Google Browser.<br>Over the past two weeks, the<br>news and speculation has<br>escalated to the point where<br>even Google itself is ..."
3835 ],
3836 [
3837 "Hewlett-Packard has joined<br>with Brocade to integrate<br>Brocade #39;s storage area<br>network switching technology<br>into HP Bladesystem servers to<br>reduce the amount of fabric<br>infrastructure needed in a<br>datacentre."
3838 ],
3839 [
3840 "The US Senate Commerce<br>Committee on Wednesday<br>approved a measure that would<br>provide up to \\$1 billion to<br>ensure consumers can still<br>watch television when<br>broadcasters switch to new,<br>crisp digital signals."
3841 ],
3842 [
3843 "Reuters - Internet stocks<br>are\\as volatile as ever, with<br>growth-starved investors<br>flocking to\\the sector in the<br>hope they've bought shares in<br>the next online\\blue chip."
3844 ],
3845 [
3846 "NASA has released an inventory<br>of the scientific devices to<br>be put on board the Mars<br>Science Laboratory rover<br>scheduled to land on the<br>surface of Mars in 2009, NASAs<br>news release reads."
3847 ],
3848 [
3849 "The U.S. Congress needs to<br>invest more in the U.S.<br>education system and do more<br>to encourage broadband<br>adoption, the chief executive<br>of Cisco said Wednesday.&lt;p&<br>gt;ADVERTISEMENT&lt;/p&gt;&lt;<br>p&gt;&lt;img src=\"http://ad.do<br>ubleclick.net/ad/idg.us.ifw.ge<br>neral/sbcspotrssfeed;sz=1x1;or<br>d=200301151450?\" width=\"1\"<br>height=\"1\"<br>border=\"0\"/&gt;&lt;a href=\"htt<br>p://ad.doubleclick.net/clk;922<br>8975;9651165;a?http://www.info<br>world.com/spotlights/sbc/main.<br>html?lpid0103035400730000idlp\"<br>&gt;SBC Case Study: Crate Ba<br>rrel&lt;/a&gt;&lt;br/&gt;What<br>sold them on improving their<br>network? A system that could<br>cut management costs from the<br>get-go. Find out<br>more.&lt;/p&gt;"
3850 ],
3851 [
3852 "Thirty-two countries and<br>regions will participate the<br>Fifth China International<br>Aviation and Aerospace<br>Exhibition, opening Nov. 1 in<br>Zhuhai, a city in south China<br>#39;s Guangdong Province."
3853 ],
3854 [
3855 "p2pnet.net News:- Virgin<br>Electronics has joined the mp3<br>race with a \\$250, five gig<br>player which also handles<br>Microsoft #39;s WMA format."
3856 ],
3857 [
3858 "Microsoft has suspended the<br>beta testing of the next<br>version of its MSN Messenger<br>client because of a potential<br>security problem, a company<br>spokeswoman said Wednesday."
3859 ],
3860 [
3861 "AP - Business software maker<br>Oracle Corp. attacked the<br>credibility and motives of<br>PeopleSoft Inc.'s board of<br>directors Monday, hoping to<br>rally investor support as the<br>17-month takeover battle<br>between the bitter business<br>software rivals nears a<br>climactic showdown."
3862 ],
3863 [
3864 "A new worm has been discovered<br>in the wild that #39;s not<br>just settling for invading<br>users #39; PCs--it wants to<br>invade their homes too."
3865 ],
3866 [
3867 "Researchers have for the first<br>time established the existence<br>of odd-parity superconductors,<br>materials that can carry<br>electric current without any<br>resistance."
3868 ],
3869 [
3870 "BRUSSELS, Belgium (AP) --<br>European antitrust regulators<br>said Monday they have extended<br>their review of a deal between<br>Microsoft Corp. (MSFT) and<br>Time Warner Inc..."
3871 ],
3872 [
3873 "Fans who can't get enough of<br>\"The Apprentice\" can visit a<br>new companion Web site each<br>week and watch an extra 40<br>minutes of video not broadcast<br>on the Thursday<br>show.&lt;br&gt;&lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-Leslie<br>Walker&lt;/b&gt;&lt;/font&gt;"
3874 ],
3875 [
3876 "An adult Web site publisher is<br>suing Google, saying the<br>search engine company made it<br>easier for users to see the<br>site #39;s copyrighted nude<br>photographs without paying or<br>gaining access through the<br>proper channels."
3877 ],
3878 [
3879 "A Washington-based public<br>opinion firm has released the<br>results of an election day<br>survey of Nevada voters<br>showing 81 support for the<br>issuance of paper receipts<br>when votes are cast<br>electronically."
3880 ],
3881 [
3882 "NAPSTER creator SHAWN FANNING<br>has revealed his plans for a<br>new licensed file-sharing<br>service with an almost<br>unlimited selection of tracks."
3883 ],
3884 [
3885 "Two separate studies by U.S.<br>researchers find that super<br>drug-resistant strains of<br>tuberculosis are at the<br>tipping point of a global<br>epidemic, and only small<br>changes could help them spread<br>quickly."
3886 ],
3887 [
3888 "Dell cut prices on some<br>servers and PCs by as much as<br>22 percent because it #39;s<br>paying less for parts. The<br>company will pass the savings<br>on components such as memory<br>and liquid crystal displays"
3889 ],
3890 [
3891 "WASHINGTON: The European-<br>American Cassini-Huygens space<br>probe has detected traces of<br>ice flowing on the surface of<br>Saturn #39;s largest moon,<br>Titan, suggesting the<br>existence of an ice volcano,<br>NASA said Tuesday."
3892 ],
3893 [
3894 "All ISS systems continue to<br>function nominally, except<br>those noted previously or<br>below. Day 7 of joint<br>Exp.9/Exp.10 operations and<br>last full day before 8S<br>undocking."
3895 ],
3896 [
3897 " quot;Magic can happen. quot;<br>Sirius Satellite Radio<br>(nasdaq: SIRI - news - people<br>) may have signed Howard Stern<br>and the men #39;s NCAA<br>basketball tournaments, but XM<br>Satellite Radio (nasdaq: XMSR<br>- news - people ) has its<br>sights on your cell phone."
3898 ],
3899 [
3900 "Trick-or-treaters can expect<br>an early Halloween treat on<br>Wednesday night, when a total<br>lunar eclipse makes the moon<br>look like a glowing pumpkin."
3901 ],
3902 [
3903 "Sifting through millions of<br>documents to locate a valuable<br>few is tedious enough, but<br>what happens when those files<br>are scattered across different<br>repositories?"
3904 ],
3905 [
3906 "NASA #39;s Mars rovers have<br>uncovered more tantalizing<br>evidence of a watery past on<br>the Red Planet, scientists<br>said Wednesday. And the<br>rovers, Spirit and<br>Opportunity, are continuing to<br>do their jobs months after<br>they were expected to ..."
3907 ],
3908 [
3909 "Intel Chief Technology Officer<br>Pat Gelsinger said on<br>Thursday, Sept. 9, that the<br>Internet needed to be upgraded<br>in order to deal with problems<br>that will become real issues<br>soon."
3910 ],
3911 [
3912 " LONDON (Reuters) - Television<br>junkies of the world, get<br>ready for \"Friends,\" \"Big<br>Brother\" and \"The Simpsons\" to<br>phone home."
3913 ],
3914 [
3915 "I #39;M FEELING a little bit<br>better about the hundreds of<br>junk e-mails I get every day<br>now that I #39;ve read that<br>someone else has much bigger<br>e-mail troubles."
3916 ],
3917 [
3918 "Microsoft's antispam Sender ID<br>technology continues to get<br>the cold shoulder. Now AOL<br>adds its voice to a growing<br>chorus of businesses and<br>organizations shunning the<br>proprietary e-mail<br>authentication system."
3919 ],
3920 [
3921 "Through the World Community<br>Grid, your computer could help<br>address the world's health and<br>social problems."
3922 ],
3923 [
3924 "A planned component for<br>Microsoft #39;s next version<br>of Windows is causing<br>consternation among antivirus<br>experts, who say that the new<br>module, a scripting platform<br>called Microsoft Shell, could<br>give birth to a whole new<br>generation of viruses and<br>remotely"
3925 ],
3926 [
3927 "SAN JOSE, California Yahoo<br>will likely have a tough time<br>getting American courts to<br>intervene in a dispute over<br>the sale of Nazi memorabilia<br>in France after a US appeals<br>court ruling."
3928 ],
3929 [
3930 "eBay Style director Constance<br>White joins Post fashion<br>editor Robin Givhan and host<br>Janet Bennett to discuss how<br>to find trends and bargains<br>and pull together a wardrobe<br>online."
3931 ],
3932 [
3933 "With a sudden shudder, the<br>ground collapsed and the pipe<br>pushed upward, buckling into a<br>humped shape as Cornell<br>University scientists produced<br>the first simulated earthquake"
3934 ],
3935 [
3936 "Microsoft (Quote, Chart) has<br>fired another salvo in its<br>ongoing spam battle, this time<br>against porn peddlers who don<br>#39;t keep their smut inside<br>the digital equivalent of a<br>quot;Brown Paper Wrapper."
3937 ],
3938 [
3939 " SEATTLE (Reuters) - The next<br>version of the Windows<br>operating system, Microsoft<br>Corp.'s &lt;A HREF=\"http://www<br>.reuters.co.uk/financeQuoteLoo<br>kup.jhtml?ticker=MSFT.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;MSFT.O&lt;/A&gt;<br>flagship product, will ship<br>in 2006, the world's largest<br>software maker said on<br>Friday."
3940 ],
3941 [
3942 "Fossil remains of the oldest<br>and smallest known ancestor of<br>Tyrannosaurus rex, the world<br>#39;s favorite ferocious<br>dinosaur, have been discovered<br>in China with evidence that<br>its body was cloaked in downy<br>quot;protofeathers."
3943 ],
3944 [
3945 "People fishing for sport are<br>doing far more damage to US<br>marine fish stocks than anyone<br>thought, accounting for nearly<br>a quarter of the"
3946 ],
3947 [
3948 "This particular index is<br>produced by the University of<br>Michigan Business School, in<br>partnership with the American<br>Society for Quality and CFI<br>Group, and is supported in<br>part by ForeSee Results"
3949 ],
3950 [
3951 "PC World - Symantec, McAfee<br>hope raising virus-definition<br>fees will move users to\\<br>suites."
3952 ],
3953 [
3954 "By byron kho. A consortium of<br>movie and record companies<br>joined forces on Friday to<br>request that the US Supreme<br>Court take another look at<br>peer-to-peer file-sharing<br>programs."
3955 ],
3956 [
3957 "LONDON - Wild capuchin monkeys<br>can understand cause and<br>effect well enough to use<br>rocks to dig for food,<br>scientists have found.<br>Capuchin monkeys often use<br>tools and solve problems in<br>captivity and sometimes"
3958 ],
3959 [
3960 "The key to hidden treasure<br>lies in your handheld GPS<br>unit. GPS-based \"geocaching\"<br>is a high-tech sport being<br>played by thousands of people<br>across the globe."
3961 ],
3962 [
3963 "The U.S. information tech<br>sector lost 403,300 jobs<br>between March 2001 and April<br>2004, and the market for tech<br>workers remains bleak,<br>according to a new report."
3964 ],
3965 [
3966 "com September 30, 2004, 11:11<br>AM PT. SanDisk announced<br>Thursday increased capacities<br>for several different flash<br>memory cards. The Sunnyvale,<br>Calif."
3967 ],
3968 [
3969 "roundup Plus: Tech firms rally<br>against copyright bill...Apple<br>.Mac customers suffer e-mail<br>glitches...Alvarion expands<br>wireless broadband in China."
3970 ],
3971 [
3972 "Red Hat is acquiring security<br>and authentication tools from<br>Netscape Security Solutions to<br>bolster its software arsenal.<br>Red Hat #39;s CEO and chairman<br>Matthew Szulik spoke about the<br>future strategy of the Linux<br>supplier."
3973 ],
3974 [
3975 "Global Web portal Yahoo! Inc.<br>Wednesday night made available<br>a beta version of a new search<br>service for videos. Called<br>Yahoo! Video Search, the<br>search engine crawls the Web<br>for different types of media<br>files"
3976 ],
3977 [
3978 "Interactive posters at 25<br>underground stations are<br>helping Londoners travel<br>safely over Christmas."
3979 ],
3980 [
3981 "According to Swiss<br>authorities, history was made<br>Sunday when 2723 people in<br>four communities in canton<br>Geneva, Switzerland, voted<br>online in a national federal<br>referendum."
3982 ],
3983 [
3984 " Nextel was the big story in<br>telecommunications yesterday,<br>thanks to the Reston company's<br>mega-merger with Sprint, but<br>the future of wireless may be<br>percolating in dozens of<br>Washington area start-ups."
3985 ],
3986 [
3987 "I have been anticipating this<br>day like a child waits for<br>Christmas. Today, PalmOne<br>introduces the Treo 650, the<br>answer to my quot;what smart<br>phone will I buy?"
3988 ],
3989 [
3990 "Wikipedia has surprised Web<br>watchers by growing fast and<br>maturing into one of the most<br>popular reference sites."
3991 ],
3992 [
3993 "It only takes 20 minutes on<br>the Internet for an<br>unprotected computer running<br>Microsoft Windows to be taken<br>over by a hacker. Any personal<br>or financial information<br>stored"
3994 ],
3995 [
3996 "Prices for flash memory cards<br>-- the little modules used by<br>digital cameras, handheld<br>organizers, MP3 players and<br>cell phones to store pictures,<br>music and other data -- are<br>headed down -- way down. Past<br>trends suggest that prices<br>will drop 35 percent a year,<br>but industry analysts think<br>that rate will be more like 40<br>or 50 percent this year and<br>next, due to more<br>manufacturers entering the<br>market."
3997 ],
3998 [
3999 "While the US software giant<br>Microsoft has achieved almost<br>sweeping victories in<br>government procurement<br>projects in several Chinese<br>provinces and municipalities,<br>the process"
4000 ],
4001 [
4002 "Microsoft Corp. has delayed<br>automated distribution of a<br>major security upgrade to its<br>Windows XP Professional<br>operating system, citing a<br>desire to give companies more<br>time to test it."
4003 ],
4004 [
4005 "Gateway computers will be more<br>widely available at Office<br>Depot, in the PC maker #39;s<br>latest move to broaden<br>distribution at retail stores<br>since acquiring rival<br>eMachines this year."
4006 ],
4007 [
4008 "Intel Corp. is refreshing its<br>64-bit Itanium 2 processor<br>line with six new chips based<br>on the Madison core. The new<br>processors represent the last<br>single-core Itanium chips that<br>the Santa Clara, Calif."
4009 ],
4010 [
4011 "For the first time, broadband<br>connections are reaching more<br>than half (51 percent) of the<br>American online population at<br>home, according to measurement<br>taken in July by<br>Nielsen/NetRatings, a<br>Milpitas-based Internet<br>audience measurement and<br>research ..."
4012 ],
4013 [
4014 "Consider the New World of<br>Information - stuff that,<br>unlike the paper days of the<br>past, doesn't always<br>physically exist. You've got<br>notes, scrawlings and<br>snippets, Web graphics, photos<br>and sounds. Stuff needs to be<br>cut, pasted, highlighted,<br>annotated, crossed out,<br>dragged away. And, as Ross<br>Perot used to say (or maybe it<br>was Dana Carvey impersonating<br>him), don't forget the graphs<br>and charts."
4015 ],
4016 [
4017 "Major Hollywood studios on<br>Tuesday announced scores of<br>lawsuits against computer<br>server operators worldwide,<br>including eDonkey, BitTorrent<br>and DirectConnect networks,<br>for allowing trading of<br>pirated movies."
4018 ],
4019 [
4020 "But will Wi-Fi, high-<br>definition broadcasts, mobile<br>messaging and other<br>enhancements improve the game,<br>or wreck it?\\&lt;br /&gt;<br>Photos of tech-friendly parks\\"
4021 ],
4022 [
4023 "On-demand viewing isn't just<br>for TiVo owners anymore.<br>Television over internet<br>protocol, or TVIP, offers<br>custom programming over<br>standard copper wires."
4024 ],
4025 [
4026 "PalmSource #39;s European<br>developer conference is going<br>on now in Germany, and this<br>company is using this<br>opportunity to show off Palm<br>OS Cobalt 6.1, the latest<br>version of its operating<br>system."
4027 ],
4028 [
4029 "Speaking to members of the<br>Massachusetts Software<br>Council, Microsoft CEO Steve<br>Ballmer touted a bright future<br>for technology but warned his<br>listeners to think twice<br>before adopting open-source<br>products like Linux."
4030 ],
4031 [
4032 "MIAMI - The Trillian instant<br>messaging (IM) application<br>will feature several<br>enhancements in its upcoming<br>version 3.0, including new<br>video and audio chat<br>capabilities, enhanced IM<br>session logs and integration<br>with the Wikipedia online<br>encyclopedia, according to<br>information posted Friday on<br>the product developer's Web<br>site."
4033 ],
4034 [
4035 "Reuters - Online DVD rental<br>service Netflix Inc.\\and TiVo<br>Inc., maker of a digital video<br>recorder, on Thursday\\said<br>they have agreed to develop a<br>joint entertainment\\offering,<br>driving shares of both<br>companies higher."
4036 ],
4037 [
4038 "THIS YULE is all about console<br>supply and there #39;s<br>precious little units around,<br>it has emerged. Nintendo has<br>announced that it is going to<br>ship another 400,000 units of<br>its DS console to the United<br>States to meet the shortfall<br>there."
4039 ],
4040 [
4041 "Annual global semiconductor<br>sales growth will probably<br>fall by half in 2005 and<br>memory chip sales could<br>collapse as a supply glut saps<br>prices, world-leading memory<br>chip maker Samsung Electronics<br>said on Monday."
4042 ],
4043 [
4044 "NEW YORK - Traditional phone<br>systems may be going the way<br>of the Pony Express. Voice-<br>over-Internet Protocol,<br>technology that allows users<br>to make and receive phone<br>calls using the Internet, is<br>giving the old circuit-<br>switched system a run for its<br>money."
4045 ],
4046 [
4047 "AP - The first U.S. cases of<br>the fungus soybean rust, which<br>hinders plant growth and<br>drastically cuts crop<br>production, were found at two<br>research sites in Louisiana,<br>officials said Wednesday."
4048 ],
4049 [
4050 " quot;There #39;s no way<br>anyone would hire them to<br>fight viruses, quot; said<br>Sophos security analyst Gregg<br>Mastoras. quot;For one, no<br>security firm could maintain<br>its reputation by employing<br>hackers."
4051 ],
4052 [
4053 "Symantec has revoked its<br>decision to blacklist a<br>program that allows Web<br>surfers in China to browse<br>government-blocked Web sites.<br>The move follows reports that<br>the firm labelled the Freegate<br>program, which"
4054 ],
4055 [
4056 "Microsoft has signed a pact to<br>work with the United Nations<br>Educational, Scientific and<br>Cultural Organization (UNESCO)<br>to increase computer use,<br>Internet access and teacher<br>training in developing<br>countries."
4057 ],
4058 [
4059 "roundup Plus: Microsoft tests<br>Windows Marketplace...Nortel<br>delays financials<br>again...Microsoft updates<br>SharePoint."
4060 ],
4061 [
4062 "OPEN SOURCE champion Microsoft<br>is expanding its programme to<br>give government organisations<br>some of its source code. In a<br>communique from the lair of<br>the Vole, in Redmond,<br>spinsters have said that<br>Microsoft"
4063 ],
4064 [
4065 "WASHINGTON Can you always tell<br>when somebody #39;s lying? If<br>so, you might be a wizard of<br>the fib. A California<br>psychology professor says<br>there #39;s a tiny subculture<br>of people that can pick out a<br>lie nearly every time they<br>hear one."
4066 ],
4067 [
4068 "Type design was once the<br>province of skilled artisans.<br>With the help of new computer<br>programs, neophytes have<br>flooded the Internet with<br>their creations."
4069 ],
4070 [
4071 "RCN Inc., co-owner of<br>Starpower Communications LLC,<br>the Washington area<br>television, telephone and<br>Internet provider, filed a<br>plan of reorganization<br>yesterday that it said puts<br>the company"
4072 ],
4073 [
4074 "&lt;strong&gt;Letters&lt;/stro<br>ng&gt; Reports of demise<br>premature"
4075 ],
4076 [
4077 "Intel, the world #39;s largest<br>chip maker, scrapped a plan<br>Thursday to enter the digital<br>television chip business,<br>marking a major retreat from<br>its push into consumer<br>electronics."
4078 ],
4079 [
4080 "The US is the originator of<br>over 42 of the worlds<br>unsolicited commercial e-mail,<br>making it the worst offender<br>in a league table of the top<br>12 spam producing countries<br>published yesterday by anti-<br>virus firm Sophos."
4081 ],
4082 [
4083 "Intel is drawing the curtain<br>on some of its future research<br>projects to continue making<br>transistors smaller, faster,<br>and less power-hungry out as<br>far as 2020."
4084 ],
4085 [
4086 "Plus: Experts fear Check 21<br>could lead to massive bank<br>fraud."
4087 ],
4088 [
4089 "By SIOBHAN McDONOUGH<br>WASHINGTON (AP) -- Fewer<br>American youths are using<br>marijuana, LSD and Ecstasy,<br>but more are abusing<br>prescription drugs, says a<br>government report released<br>Thursday. The 2003 National<br>Survey on Drug Use and Health<br>also found youths and young<br>adults are more aware of the<br>risks of using pot once a<br>month or more frequently..."
4090 ],
4091 [
4092 "A TNO engineer prepares to<br>start capturing images for the<br>world's biggest digital photo."
4093 ],
4094 [
4095 "PalmOne is aiming to sharpen<br>up its image with the launch<br>of the Treo 650 on Monday. As<br>previously reported, the smart<br>phone update has a higher-<br>resolution screen and a faster<br>processor than the previous<br>top-of-the-line model, the<br>Treo 600."
4096 ],
4097 [
4098 "kinrowan writes quot;MIT,<br>inventor of Kerberos, has<br>announced a pair of<br>vulnerabities in the software<br>that will allow an attacker to<br>either execute a DOS attack or<br>execute code on the machine."
4099 ],
4100 [
4101 "Reuters - Former Pink Floyd<br>mainman Roger\\Waters released<br>two new songs, both inspired<br>by the U.S.-led\\invasion of<br>Iraq, via online download<br>outlets Tuesday."
4102 ],
4103 [
4104 "NASA has been working on a<br>test flight project for the<br>last few years involving<br>hypersonic flight. Hypersonic<br>flight is fight at speeds<br>greater than Mach 5, or five<br>times the speed of sound."
4105 ],
4106 [
4107 "AP - Microsoft Corp. announced<br>Wednesday that it would offer<br>a low-cost, localized version<br>of its Windows XP operating<br>system in India to tap the<br>large market potential in this<br>country of 1 billion people,<br>most of whom do not speak<br>English."
4108 ],
4109 [
4110 "AP - Utah State University has<br>secured a #36;40 million<br>contract with NASA to build an<br>orbiting telescope that will<br>examine galaxies and try to<br>find new stars."
4111 ],
4112 [
4113 "I spend anywhere from three to<br>eight hours every week<br>sweating along with a motley<br>crew of local misfits,<br>shelving, sorting, and hauling<br>ton after ton of written<br>matter in a rowhouse basement<br>in Baltimore. We have no heat<br>nor air conditioning, but<br>still, every week, we come and<br>work. Volunteer night is<br>Wednesday, but many of us also<br>work on the weekends, when<br>we're open to the public.<br>There are times when we're<br>freezing and we have to wear<br>coats and gloves inside,<br>making handling books somewhat<br>tricky; other times, we're all<br>soaked with sweat, since it's<br>90 degrees out and the<br>basement is thick with bodies.<br>One learns to forget about<br>personal space when working at<br>The Book Thing, since you can<br>scarcely breathe without<br>bumping into someone, and we<br>are all so accustomed to<br>having to scrape by each other<br>that most of us no longer<br>bother to say \"excuse me\"<br>unless some particularly<br>dramatic brushing occurs."
4114 ],
4115 [
4116 "Alarmed by software glitches,<br>security threats and computer<br>crashes with ATM-like voting<br>machines, officials from<br>Washington, D.C., to<br>California are considering an<br>alternative from an unlikely<br>place: Nevada."
4117 ],
4118 [
4119 "More Americans are quitting<br>their jobs and taking the risk<br>of starting a business despite<br>a still-lackluster job market."
4120 ],
4121 [
4122 "SPACE.com - With nbsp;food<br>stores nbsp;running low, the<br>two \\astronauts living aboard<br>the International Space<br>Station (ISS) are cutting back<br>\\their meal intake and<br>awaiting a critical cargo<br>nbsp;delivery expected to<br>arrive \\on Dec. 25."
4123 ],
4124 [
4125 "Virgin Electronics hopes its<br>slim Virgin Player, which<br>debuts today and is smaller<br>than a deck of cards, will<br>rise as a lead competitor to<br>Apple's iPod."
4126 ],
4127 [
4128 "Researchers train a monkey to<br>feed itself by guiding a<br>mechanical arm with its mind.<br>It could be a big step forward<br>for prosthetics. By David<br>Cohn."
4129 ],
4130 [
4131 "AP - Scientists in 17<br>countries will scout waterways<br>to locate and study the<br>world's largest freshwater<br>fish species, many of which<br>are declining in numbers,<br>hoping to learn how to better<br>protect them, researchers<br>announced Thursday."
4132 ],
4133 [
4134 "AP - Google Inc.'s plans to<br>move ahead with its initial<br>public stock offering ran into<br>a roadblock when the<br>Securities and Exchange<br>Commission didn't approve the<br>Internet search giant's<br>regulatory paperwork as<br>requested."
4135 ],
4136 [
4137 "Citing security risks, a state<br>university is urging students<br>to drop Internet Explorer in<br>favor of alternative Web<br>browsers such as Firefox and<br>Safari."
4138 ],
4139 [
4140 "Despite being ranked eleventh<br>in the world in broadband<br>penetration, the United States<br>is rolling out high-speed<br>services on a quot;reasonable<br>and timely basis to all<br>Americans, quot; according to<br>a new report narrowly approved<br>today by the Federal<br>Communications"
4141 ],
4142 [
4143 "NewsFactor - Taking an<br>innovative approach to the<br>marketing of high-performance<br>\\computing, Sun Microsystems<br>(Nasdaq: SUNW) is offering its<br>N1 Grid program in a pay-for-<br>use pricing model that mimics<br>the way such commodities as<br>electricity and wireless phone<br>plans are sold."
4144 ],
4145 [
4146 "Reuters - Madonna and m-Qube<br>have\\made it possible for the<br>star's North American fans to<br>download\\polyphonic ring tones<br>and other licensed mobile<br>content from\\her official Web<br>site, across most major<br>carriers and without\\the need<br>for a credit card."
4147 ],
4148 [
4149 "The chipmaker is back on a<br>buying spree, having scooped<br>up five other companies this<br>year."
4150 ],
4151 [
4152 "The company hopes to lure<br>software partners by promising<br>to save them from<br>infrastructure headaches."
4153 ],
4154 [
4155 "Call it the Maximus factor.<br>Archaeologists working at the<br>site of an old Roman temple<br>near Guy #39;s hospital in<br>London have uncovered a pot of<br>cosmetic cream dating back to<br>AD2."
4156 ],
4157 [
4158 "The deal comes as Cisco pushes<br>to develop a market for CRS-1,<br>a new line of routers aimed at<br>telephone, wireless and cable<br>companies."
4159 ],
4160 [
4161 "SEPTEMBER 14, 2004 (IDG NEWS<br>SERVICE) - Sun Microsystems<br>Inc. and Microsoft Corp. next<br>month plan to provide more<br>details on the work they are<br>doing to make their products<br>interoperable, a Sun executive<br>said yesterday."
4162 ],
4163 [
4164 "AP - Astronomy buffs and<br>amateur stargazers turned out<br>to watch a total lunar eclipse<br>Wednesday night #151; the<br>last one Earth will get for<br>nearly two and a half years."
4165 ],
4166 [
4167 "The compact disc has at least<br>another five years as the most<br>popular music format before<br>online downloads chip away at<br>its dominance, a new study<br>said on Tuesday."
4168 ],
4169 [
4170 "Does Your Site Need a Custom<br>Search Engine<br>Toolbar?\\\\Today's surfers<br>aren't always too comfortable<br>installing software on their<br>computers. Especially free<br>software that they don't<br>necessarily understand. With<br>all the horror stories of<br>viruses, spyware, and adware<br>that make the front page these<br>days, it's no wonder. So is<br>there ..."
4171 ],
4172 [
4173 "Spammers aren't ducking<br>antispam laws by operating<br>offshore, they're just<br>ignoring it."
4174 ],
4175 [
4176 "AP - Biologists plan to use<br>large nets and traps this week<br>in Chicago's Burnham Harbor to<br>search for the northern<br>snakehead #151; a type of<br>fish known for its voracious<br>appetite and ability to wreak<br>havoc on freshwater<br>ecosystems."
4177 ],
4178 [
4179 "BAE Systems PLC and Northrop<br>Grumman Corp. won \\$45 million<br>contracts yesterday to develop<br>prototypes of anti-missile<br>technology that could protect<br>commercial aircraft from<br>shoulder-fired missiles."
4180 ],
4181 [
4182 "Users of Microsoft #39;s<br>Hotmail, most of whom are<br>accustomed to getting regular<br>sales pitches for premium<br>e-mail accounts, got a<br>pleasant surprise in their<br>inboxes this week: extra<br>storage for free."
4183 ],
4184 [
4185 "IT services provider<br>Electronic Data Systems<br>yesterday reported a net loss<br>of \\$153 million for the third<br>quarter, with earnings hit in<br>part by an asset impairment<br>charge of \\$375 million<br>connected with EDS's N/MCI<br>project."
4186 ],
4187 [
4188 "International Business<br>Machines Corp. said Wednesday<br>it had agreed to settle most<br>of the issues in a suit over<br>changes in its pension plans<br>on terms that allow the<br>company to continue to appeal<br>a key question while capping<br>its liability at \\$1.7<br>billion. &lt;BR&gt;&lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-The Washington<br>Post&lt;/B&gt;&lt;/FONT&gt;"
4189 ],
4190 [
4191 "Edward Kozel, Cisco's former<br>chief technology officer,<br>joins the board of Linux<br>seller Red Hat."
4192 ],
4193 [
4194 "Reuters - International<br>Business Machines\\Corp. late<br>on Wednesday rolled out a new<br>version of its\\database<br>software aimed at users of<br>Linux and Unix<br>operating\\systems that it<br>hopes will help the company<br>take away market\\share from<br>market leader Oracle Corp. ."
4195 ],
4196 [
4197 "NASA #39;s Mars Odyssey<br>mission, originally scheduled<br>to end on Tuesday, has been<br>granted a stay of execution<br>until at least September 2006,<br>reveal NASA scientists."
4198 ],
4199 [
4200 "BusinessWeek Online - The<br>jubilation that swept East<br>Germany after the fall of the<br>Berlin Wall in 1989 long ago<br>gave way to the sober reality<br>of globalization and market<br>forces. Now a decade of<br>resentment seems to be boiling<br>over. In Eastern cities such<br>as Leipzig or Chemnitz,<br>thousands have taken to the<br>streets since July to protest<br>cuts in unemployment benefits,<br>the main source of livelihood<br>for 1.6 million East Germans.<br>Discontent among<br>reunification's losers fueled<br>big gains by the far left and<br>far right in Brandenburg and<br>Saxony state elections Sept.<br>19. ..."
4201 ],
4202 [
4203 "In a discovery sure to set off<br>a firestorm of debate over<br>human migration to the western<br>hemisphere, archaeologists in<br>South Carolina say they have<br>uncovered evidence that people<br>lived in eastern North America<br>at least 50,000 years ago -<br>far earlier than"
4204 ],
4205 [
4206 "AP - Former president Bill<br>Clinton on Monday helped<br>launch a new Internet search<br>company backed by the Chinese<br>government which says its<br>technology uses artificial<br>intelligence to produce better<br>results than Google Inc."
4207 ],
4208 [
4209 "Sun Microsystems plans to<br>release its Sun Studio 10<br>development tool in the fourth<br>quarter of this year,<br>featuring support for 64-bit<br>applications running on AMD<br>Opteron and Nocona processors,<br>Sun officials said on Tuesday."
4210 ],
4211 [
4212 "Most IT Managers won #39;t<br>question the importance of<br>security, but this priority<br>has been sliding between the<br>third and fourth most<br>important focus for companies."
4213 ],
4214 [
4215 "AP - The Federal Trade<br>Commission on Thursday filed<br>the first case in the country<br>against software companies<br>accused of infecting computers<br>with intrusive \"spyware\" and<br>then trying to sell people the<br>solution."
4216 ],
4217 [
4218 "While shares of Apple have<br>climbed more than 10 percent<br>this week, reaching 52-week<br>highs, two research firms told<br>investors Friday they continue<br>to remain highly bullish about<br>the stock."
4219 ],
4220 [
4221 "States are now barred from<br>imposing telecommunications<br>regulations on Net phone<br>providers."
4222 ],
4223 [
4224 "Strong sales of new mobile<br>phone models boosts profits at<br>Carphone Warehouse but the<br>retailer's shares fall on<br>concerns at a decline in<br>profits from pre-paid phones."
4225 ],
4226 [
4227 " NEW YORK (Reuters) - IBM and<br>top scientific research<br>organizations are joining<br>forces in a humanitarian<br>effort to tap the unused<br>power of millions of computers<br>and help solve complex social<br>problems."
4228 ],
4229 [
4230 "AP - Grizzly and black bears<br>killed a majority of elk<br>calves in northern Yellowstone<br>National Park for the second<br>year in a row, preliminary<br>study results show."
4231 ],
4232 [
4233 "PC World - The one-time World<br>Class Product of the Year PDA<br>gets a much-needed upgrade."
4234 ],
4235 [
4236 "As part of its much-touted new<br>MSN Music offering, Microsoft<br>Corp. (MSFT) is testing a Web-<br>based radio service that<br>mimics nearly 1,000 local<br>radio stations, allowing users<br>to hear a version of their<br>favorite radio station with<br>far fewer interruptions."
4237 ],
4238 [
4239 "Ziff Davis - A quick<br>resolution to the Mambo open-<br>source copyright dispute seems<br>unlikely now that one of the<br>parties has rejected an offer<br>for mediation."
4240 ],
4241 [
4242 "Students take note - endless<br>journeys to the library could<br>become a thing of the past<br>thanks to a new multimillion-<br>pound scheme to make classic<br>texts available at the click<br>of a mouse."
4243 ],
4244 [
4245 "Moscow - The next crew of the<br>International Space Station<br>(ISS) is to contribute to the<br>Russian search for a vaccine<br>against Aids, Russian<br>cosmonaut Salijan Sharipovthe<br>said on Thursday."
4246 ],
4247 [
4248 "Locked away in fossils is<br>evidence of a sudden solar<br>cooling. Kate Ravilious meets<br>the experts who say it could<br>explain a 3,000-year-old mass<br>migration - and today #39;s<br>global warming."
4249 ],
4250 [
4251 "By ANICK JESDANUN NEW YORK<br>(AP) -- Taran Rampersad didn't<br>complain when he failed to<br>find anything on his hometown<br>in the online encyclopedia<br>Wikipedia. Instead, he simply<br>wrote his own entry for San<br>Fernando, Trinidad and<br>Tobago..."
4252 ],
4253 [
4254 "How do you top a battle<br>between Marines and an alien<br>religious cult fighting to the<br>death on a giant corona in<br>outer space? The next logical<br>step is to take that battle to<br>Earth, which is exactly what<br>Microsoft"
4255 ],
4256 [
4257 "Four U.S. agencies yesterday<br>announced a coordinated attack<br>to stem the global trade in<br>counterfeit merchandise and<br>pirated music and movies, an<br>underground industry that law-<br>enforcement officials estimate<br>to be worth \\$500 billion each<br>year."
4258 ],
4259 [
4260 "Half of all U.S. Secret<br>Service agents are dedicated<br>to protecting President<br>Washington #151;and all the<br>other Presidents on U.S.<br>currency #151;from<br>counterfeiters."
4261 ],
4262 [
4263 "Maxime Faget conceived and<br>proposed the development of<br>the one-man spacecraft used in<br>Project Mercury, which put the<br>first American astronauts into<br>suborbital flight, then<br>orbital flight"
4264 ],
4265 [
4266 "The patch fixes a flaw in the<br>e-mail server software that<br>could be used to get access to<br>in-boxes and information."
4267 ],
4268 [
4269 "AP - Being the biggest dog may<br>pay off at feeding time, but<br>species that grow too large<br>may be more vulnerable to<br>extinction, new research<br>suggests."
4270 ],
4271 [
4272 "Newest Efficeon processor also<br>offers higher frequency using<br>less power."
4273 ],
4274 [
4275 "AP - In what it calls a first<br>in international air travel,<br>Finnair says it will let its<br>frequent fliers check in using<br>text messages on mobile<br>phones."
4276 ],
4277 [
4278 "Search Engine for Programming<br>Code\\\\An article at Newsforge<br>pointed me to Koders (<br>http://www.koders.com ) a<br>search engine for finding<br>programming code. Nifty.\\\\The<br>front page allows you to<br>specify keywords, sixteen<br>languages (from ASP to VB.NET)<br>and sixteen licenses (from AFL<br>to ZPL -- fortunately there's<br>an information page to ..."
4279 ],
4280 [
4281 " #147;Apple once again was the<br>star of the show at the annual<br>MacUser awards, #148; reports<br>MacUser, #147;taking away six<br>Maxine statues including<br>Product of the Year for the<br>iTunes Music Store. #148;<br>Other Apple award winners:<br>Power Mac G5, AirPort Express,<br>20-inch Apple Cinema Display,<br>GarageBand and DVD Studio Pro<br>3. Nov 22"
4282 ],
4283 [
4284 "AP - A sweeping wildlife<br>preserve in southwestern<br>Arizona is among the nation's<br>10 most endangered refuges,<br>due in large part to illegal<br>drug and immigrant traffic and<br>Border Patrol operations, a<br>conservation group said<br>Friday."
4285 ],
4286 [
4287 "SEPTEMBER 20, 2004<br>(COMPUTERWORLD) - At<br>PeopleSoft Inc. #39;s Connect<br>2004 conference in San<br>Francisco this week, the<br>software vendor is expected to<br>face questions from users<br>about its ability to fend off<br>Oracle Corp."
4288 ],
4289 [
4290 "PBS's Charlie Rose quizzes Sun<br>co-founder Bill Joy,<br>Monster.com chief Jeff Taylor,<br>and venture capitalist John<br>Doerr."
4291 ],
4292 [
4293 "Skype Technologies is teaming<br>with Siemens to offer cordless<br>phone users the ability to<br>make Internet telephony calls,<br>in addition to traditional<br>calls, from their handsets."
4294 ],
4295 [
4296 "AP - After years of<br>resistance, the U.S. trucking<br>industry says it will not try<br>to impede or delay a new<br>federal rule aimed at cutting<br>diesel pollution."
4297 ],
4298 [
4299 "Umesh Patel, a 36-year old<br>software engineer from<br>California, debated until the<br>last minute."
4300 ],
4301 [
4302 "AP - From now until the start<br>of winter, male tarantulas are<br>roaming around, searching for<br>female mates, an ideal time to<br>find out where the spiders<br>flourish in Arkansas."
4303 ],
4304 [
4305 "NewsFactor - While a U.S.<br>District Court continues to<br>weigh the legality of<br>\\Oracle's (Nasdaq: ORCL)<br>attempted takeover of<br>\\PeopleSoft (Nasdaq: PSFT),<br>Oracle has taken the necessary<br>steps to ensure the offer does<br>not die on the vine with<br>PeopleSoft's shareholders."
4306 ],
4307 [
4308 "Analysts said the smartphone<br>enhancements hold the<br>potential to bring PalmSource<br>into an expanding market that<br>still has room despite early<br>inroads by Symbian and<br>Microsoft."
4309 ],
4310 [
4311 "TOKYO (AFP) - Japan #39;s<br>Fujitsu and Cisco Systems of<br>the US said they have agreed<br>to form a strategic alliance<br>focusing on routers and<br>switches that will enable<br>businesses to build advanced<br>Internet Protocol (IP)<br>networks."
4312 ],
4313 [
4314 "It #39;s a new internet<br>browser. The first full<br>version, Firefox 1.0, was<br>launched earlier this month.<br>In the sense it #39;s a<br>browser, yes, but the<br>differences are larger than<br>the similarities."
4315 ],
4316 [
4317 "Microsoft will accelerate SP2<br>distribution to meet goal of<br>100 million downloads in two<br>months."
4318 ],
4319 [
4320 "International Business<br>Machines Corp., taken to court<br>by workers over changes it<br>made to its traditional<br>pension plan, has decided to<br>stop offering any such plan to<br>new employees."
4321 ],
4322 [
4323 "NEW YORK - With four of its<br>executives pleading guilty to<br>price-fixing charges today,<br>Infineon will have a hard time<br>arguing that it didn #39;t fix<br>prices in its ongoing<br>litigation with Rambus."
4324 ],
4325 [
4326 "A report indicates that many<br>giants of the industry have<br>been able to capture lasting<br>feelings of customer loyalty."
4327 ],
4328 [
4329 "It is the news that Internet<br>users do not want to hear: the<br>worldwide web is in danger of<br>collapsing around us. Patrick<br>Gelsinger, the chief<br>technology officer for<br>computer chip maker Intel,<br>told a conference"
4330 ],
4331 [
4332 "Cisco Systems CEO John<br>Chambers said today that his<br>company plans to offer twice<br>as many new products this year<br>as ever before."
4333 ],
4334 [
4335 "Every day, somewhere in the<br>universe, there #39;s an<br>explosion that puts the power<br>of the Sun in the shade. Steve<br>Connor investigates the riddle<br>of gamma-ray bursts."
4336 ],
4337 [
4338 "Ten months after NASA #39;s<br>twin rovers landed on Mars,<br>scientists reported this week<br>that both robotic vehicles are<br>still navigating their rock-<br>studded landscapes with all<br>instruments operating"
4339 ],
4340 [
4341 "British scientists say they<br>have found a new, greener way<br>to power cars and homes using<br>sunflower oil, a commodity<br>more commonly used for cooking<br>fries."
4342 ],
4343 [
4344 "The United States #39; top<br>computer-security official has<br>resigned after a little more<br>than a year on the job, the US<br>Department of Homeland<br>Security said on Friday."
4345 ],
4346 [
4347 " SAN FRANCISCO (Reuters) -<br>Intel Corp. &lt;A HREF=\"http:/<br>/www.reuters.co.uk/financeQuot<br>eLookup.jhtml?ticker=INTC.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;INTC.O&lt;/A&gt;<br>on Thursday outlined its<br>vision of the Internet of the<br>future, one in which millions<br>of computer servers would<br>analyze and direct network<br>traffic to make the Web safer<br>and more efficient."
4348 ],
4349 [
4350 "Check out new gadgets as<br>holiday season approaches."
4351 ],
4352 [
4353 "TOKYO, Sep 08, 2004 (AFX-UK<br>via COMTEX) -- Sony Corp will<br>launch its popular projection<br>televisions with large liquid<br>crystal display (LCD) screens<br>in China early next year, a<br>company spokeswoman said."
4354 ],
4355 [
4356 "AFP - Outgoing EU competition<br>commissioner Mario Monti wants<br>to reach a decision on<br>Oracle's proposed takeover of<br>business software rival<br>PeopleSoft by the end of next<br>month, an official said."
4357 ],
4358 [
4359 " WASHINGTON (Reuters) -<br>Satellite companies would be<br>able to retransmit<br>broadcasters' television<br>signals for another five<br>years but would have to offer<br>those signals on a single<br>dish, under legislation<br>approved by Congress on<br>Saturday."
4360 ],
4361 [
4362 "Sven Jaschan, who may face<br>five years in prison for<br>spreading the Netsky and<br>Sasser worms, is now working<br>in IT security. Photo: AFP."
4363 ],
4364 [
4365 "TechWeb - An Indian Institute<br>of Technology professor--and<br>open-source evangelist--<br>discusses the role of Linux<br>and open source in India."
4366 ],
4367 [
4368 "Here are some of the latest<br>health and medical news<br>developments, compiled by<br>editors of HealthDay: -----<br>Contaminated Fish in Many U.S.<br>Lakes and Rivers Fish<br>that may be contaminated with<br>dioxin, mercury, PCBs and<br>pesticides are swimming in<br>more than one-third of the<br>United States' lakes and<br>nearly one-quarter of its<br>rivers, according to a list of<br>advisories released by the<br>Environmental Protection<br>Agency..."
4369 ],
4370 [
4371 "Bill Gates is giving his big<br>speech right now at Microsofts<br>big Digital Entertainment<br>Anywhere event in Los Angeles.<br>Well have a proper report for<br>you soon, but in the meantime<br>we figured wed"
4372 ],
4373 [
4374 "Spinal and non-spinal<br>fractures are reduced by<br>almost a third in women age 80<br>or older who take a drug<br>called strontium ranelate,<br>European investigators<br>announced"
4375 ],
4376 [
4377 "BERLIN: Apple Computer Inc is<br>planning the next wave of<br>expansion for its popular<br>iTunes online music store with<br>a multi-country European<br>launch in October, the<br>services chief architect said<br>on Wednesday."
4378 ],
4379 [
4380 "Calls to 13 other countries<br>will be blocked to thwart<br>auto-dialer software."
4381 ],
4382 [
4383 "com September 27, 2004, 5:00<br>AM PT. This fourth priority<br>#39;s main focus has been<br>improving or obtaining CRM and<br>ERP software for the past year<br>and a half."
4384 ],
4385 [
4386 "SPACE.com - The Zero Gravity<br>Corporation \\ has been given<br>the thumbs up by the Federal<br>Aviation Administration (FAA)<br>to \\ conduct quot;weightless<br>flights quot; for the general<br>public, providing the \\<br>sensation of floating in<br>space."
4387 ],
4388 [
4389 "A 32-year-old woman in Belgium<br>has become the first woman<br>ever to give birth after<br>having ovarian tissue removed,<br>frozen and then implanted back<br>in her body."
4390 ],
4391 [
4392 "No sweat, says the new CEO,<br>who's imported from IBM. He<br>also knows this will be the<br>challenge of a lifetime."
4393 ],
4394 [
4395 "AP - Their discoveries may be<br>hard for many to comprehend,<br>but this year's Nobel Prize<br>winners still have to explain<br>what they did and how they did<br>it."
4396 ],
4397 [
4398 "More than 15 million homes in<br>the UK will be able to get on-<br>demand movies by 2008, say<br>analysts."
4399 ],
4400 [
4401 "A well-researched study by the<br>National Academy of Sciences<br>makes a persuasive case for<br>refurbishing the Hubble Space<br>Telescope. NASA, which is<br>reluctant to take this<br>mission, should rethink its<br>position."
4402 ],
4403 [
4404 "LONDON -- In a deal that<br>appears to buck the growing<br>trend among governments to<br>adopt open-source<br>alternatives, the U.K.'s<br>Office of Government Commerce<br>(OGC) is negotiating a renewal<br>of a three-year agreement with<br>Microsoft Corp."
4405 ],
4406 [
4407 "WASHINGTON - A Pennsylvania<br>law requiring Internet service<br>providers (ISPs) to block Web<br>sites the state's prosecuting<br>attorneys deem to be child<br>pornography has been reversed<br>by a U.S. federal court, with<br>the judge ruling the law<br>violated free speech rights."
4408 ],
4409 [
4410 "The Microsoft Corp. chairman<br>receives four million e-mails<br>a day, but practically an<br>entire department at the<br>company he founded is<br>dedicated to ensuring that<br>nothing unwanted gets into his<br>inbox, the company #39;s chief<br>executive said Thursday."
4411 ],
4412 [
4413 "The 7100t has a mobile phone,<br>e-mail, instant messaging, Web<br>browsing and functions as an<br>organiser. The device looks<br>like a mobile phone and has<br>the features of the other<br>BlackBerry models, with a<br>large screen"
4414 ],
4415 [
4416 "Apple Computer has unveiled<br>two new versions of its hugely<br>successful iPod: the iPod<br>Photo and the U2 iPod. Apple<br>also has expanded"
4417 ],
4418 [
4419 "AP - This year's hurricanes<br>spread citrus canker to at<br>least 11,000 trees in<br>Charlotte County, one of the<br>largest outbreaks of the<br>fruit-damaging infection to<br>ever affect Florida's citrus<br>industry, state officials<br>said."
4420 ],
4421 [
4422 "IBM moved back into the iSCSI<br>(Internet SCSI) market Friday<br>with a new array priced at<br>US\\$3,000 and aimed at the<br>small and midsize business<br>market."
4423 ],
4424 [
4425 "American Technology Research<br>analyst Shaw Wu has initiated<br>coverage of Apple Computer<br>(AAPL) with a #39;buy #39;<br>recommendation, and a 12-month<br>target of US\\$78 per share."
4426 ],
4427 [
4428 "washingtonpost.com - Cell<br>phone shoppers looking for new<br>deals and features didn't find<br>them yesterday, a day after<br>Sprint Corp. and Nextel<br>Communications Inc. announced<br>a merger that the phone<br>companies promised would shake<br>up the wireless business."
4429 ],
4430 [
4431 "JAPANESE GIANT Sharp has<br>pulled the plug on its Linux-<br>based PDAs in the United<br>States as no-one seems to want<br>them. The company said that it<br>will continue to sell them in<br>Japan where they sell like hot<br>cakes"
4432 ],
4433 [
4434 "New NavOne offers handy PDA<br>and Pocket PC connectivity,<br>but fails to impress on<br>everything else."
4435 ],
4436 [
4437 "The Marvel deal calls for<br>Mforma to work with the comic<br>book giant to develop a<br>variety of mobile applications<br>based on Marvel content."
4438 ],
4439 [
4440 "washingtonpost.com - The<br>Portable Media Center -- a<br>new, Microsoft-conceived<br>handheld device that presents<br>video and photos as well as<br>music -- would be a decent<br>idea if there weren't such a<br>thing as lampposts. Or street<br>signs. Or trees. Or other<br>cars."
4441 ],
4442 [
4443 "The Air Force Reserve #39;s<br>Hurricane Hunters, those<br>fearless crews who dive into<br>the eyewalls of hurricanes to<br>relay critical data on<br>tropical systems, were chased<br>from their base on the<br>Mississippi Gulf Coast by<br>Hurricane Ivan."
4444 ],
4445 [
4446 "Embargo or not, Fidel Castro's<br>socialist paradise has quietly<br>become a pharmaceutical<br>powerhouse. (They're still<br>working on the capitalism<br>thing.) By Douglas Starr from<br>Wired magazine."
4447 ],
4448 [
4449 "A new worm can spy on users by<br>hijacking their Web cameras, a<br>security firm warned Monday.<br>The Rbot.gr worm -- the latest<br>in a long line of similar<br>worms; one security firm<br>estimates that more than 4,000<br>variations"
4450 ],
4451 [
4452 "The separation of PalmOne and<br>PalmSource will be complete<br>with Eric Benhamou's<br>resignation as the latter's<br>chairman."
4453 ],
4454 [
4455 "\\\\\"(CNN) -- A longtime<br>associate of al Qaeda leader<br>Osama bin Laden surrendered<br>to\\Saudi Arabian officials<br>Tuesday, a Saudi Interior<br>Ministry official said.\"\\\\\"But<br>it is unclear what role, if<br>any, Khaled al-Harbi may have<br>had in any terror\\attacks<br>because no public charges have<br>been filed against him.\"\\\\\"The<br>Saudi government -- in a<br>statement released by its<br>embassy in Washington<br>--\\called al-Harbi's surrender<br>\"the latest direct result\" of<br>its limited, one-month\\offer<br>of leniency to terror<br>suspects.\"\\\\This is great! I<br>hope this really starts to pay<br>off. Creative solutions<br>to\\terrorism that don't<br>involve violence. \\\\How<br>refreshing! \\\\Are you paying<br>attention Bush<br>administration?\\\\"
4456 ],
4457 [
4458 "AT T Corp. is cutting 7,400<br>more jobs and slashing the<br>book value of its assets by<br>\\$11.4 billion, drastic moves<br>prompted by the company's plan<br>to retreat from the<br>traditional consumer telephone<br>business following a lost<br>court battle."
4459 ],
4460 [
4461 "Celerons form the basis of<br>Intel #39;s entry-level<br>platform which includes<br>integrated/value motherboards<br>as well. The Celeron 335D is<br>the fastest - until the<br>Celeron 340D - 2.93GHz -<br>becomes mainstream - of the"
4462 ],
4463 [
4464 "The entertainment industry<br>asks the Supreme Court to<br>reverse the Grokster decision,<br>which held that peer-to-peer<br>networks are not liable for<br>copyright abuses of their<br>users. By Michael Grebb."
4465 ],
4466 [
4467 "Hewlett-Packard will shell out<br>\\$16.1 billion for chips in<br>2005, but Dell's wallet is<br>wide open, too."
4468 ],
4469 [
4470 "A remote attacker could take<br>complete control over<br>computers running many<br>versions of Microsoft software<br>by inserting malicious code in<br>a JPEG image that executes<br>through an unchecked buffer"
4471 ],
4472 [
4473 "The lawsuit claims the<br>companies use a patented<br>Honeywell technology for<br>brightening images and<br>reducing interference on<br>displays."
4474 ],
4475 [
4476 "The co-president of Oracle<br>testified that her company was<br>serious about its takeover<br>offer for PeopleSoft and was<br>not trying to scare off its<br>customers."
4477 ],
4478 [
4479 "An extremely rare Hawaiian<br>bird dies in captivity,<br>possibly marking the<br>extinction of its entire<br>species only 31 years after it<br>was first discovered."
4480 ],
4481 [
4482 "Does Geico's trademark lawsuit<br>against Google have merit? How<br>will the case be argued?<br>What's the likely outcome of<br>the trial? A mock court of<br>trademark experts weighs in<br>with their verdict."
4483 ],
4484 [
4485 "Treo 650 boasts a high-res<br>display, an improved keyboard<br>and camera, a removable<br>battery, and more. PalmOne<br>this week is announcing the<br>Treo 650, a hybrid PDA/cell-<br>phone device that addresses<br>many of the shortcomings"
4486 ],
4487 [
4488 "International Business<br>Machines Corp.'s possible exit<br>from the personal computer<br>business would be the latest<br>move in what amounts to a long<br>goodbye from a field it<br>pioneered and revolutionized."
4489 ],
4490 [
4491 "Leipzig Game Convention in<br>Germany, the stage for price-<br>slash revelations. Sony has<br>announced that it #39;s<br>slashing the cost of PS2 in<br>the UK and Europe to 104.99<br>GBP."
4492 ],
4493 [
4494 "In yet another devastating<br>body blow to the company,<br>Intel (Nasdaq: INTC) announced<br>it would be canceling its<br>4-GHz Pentium chip. The<br>semiconductor bellwether said<br>it was switching"
4495 ],
4496 [
4497 "Seagate #39;s native SATA<br>interface technology with<br>Native Command Queuing (NCQ)<br>allows the Barracuda 7200.8 to<br>match the performance of<br>10,000-rpm SATA drives without<br>sacrificing capacity"
4498 ],
4499 [
4500 "You #39;re probably already<br>familiar with one of the most<br>common questions we hear at<br>iPodlounge: quot;how can I<br>load my iPod up with free<br>music?"
4501 ],
4502 [
4503 "Vice chairman of the office of<br>the chief executive officer in<br>Novell Inc, Chris Stone is<br>leaving the company to pursue<br>other opportunities in life."
4504 ],
4505 [
4506 "washingtonpost.com - Microsoft<br>is going to Tinseltown today<br>to announce plans for its<br>revamped Windows XP Media<br>Center, part of an aggressive<br>push to get ahead in the<br>digital entertainment race."
4507 ],
4508 [
4509 "AP - Most of the turkeys<br>gracing the nation's dinner<br>tables Thursday have been<br>selectively bred for their<br>white meat for so many<br>generations that simply<br>walking can be a problem for<br>many of the big-breasted birds<br>and sex is no longer possible."
4510 ],
4511 [
4512 " SEATTLE (Reuters) - Microsoft<br>Corp. &lt;A HREF=\"http://www.r<br>euters.co.uk/financeQuoteLooku<br>p.jhtml?ticker=MSFT.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;MSFT.O&lt;/A&gt;<br>is making a renewed push this<br>week to get its software into<br>living rooms with the launch<br>of a new version of its<br>Windows XP Media Center, a<br>personal computer designed for<br>viewing movies, listening to<br>music and scrolling through<br>digital pictures."
4513 ],
4514 [
4515 "The new software is designed<br>to simplify the process of<br>knitting together back-office<br>business applications."
4516 ],
4517 [
4518 "FRANKFURT, GERMANY -- The<br>German subsidiaries of<br>Hewlett-Packard Co. (HP) and<br>Novell Inc. are teaming to<br>offer Linux-based products to<br>the country's huge public<br>sector."
4519 ],
4520 [
4521 "SiliconValley.com - \"I'm<br>back,\" declared Apple<br>Computer's Steve Jobs on<br>Thursday morning in his first<br>public appearance before<br>reporters since cancer surgery<br>in late July."
4522 ],
4523 [
4524 "Health India: London, Nov 4 :<br>Cosmetic face cream used by<br>fashionable Roman women was<br>discovered at an ongoing<br>archaeological dig in London,<br>in a metal container, complete<br>with the lid and contents."
4525 ],
4526 [
4527 "MacCentral - Microsoft's<br>Macintosh Business Unit on<br>Tuesday issued a patch for<br>Virtual PC 7 that fixes a<br>problem that occurred when<br>running the software on Power<br>Mac G5 computers with more<br>than 2GB of RAM installed.<br>Previously, Virtual PC 7 would<br>not run on those computers,<br>causing a fatal error that<br>crashed the application.<br>Microsoft also noted that<br>Virtual PC 7.0.1 also offers<br>stability improvements,<br>although it wasn't more<br>specific than that -- some<br>users have reported problems<br>with using USB devices and<br>other issues."
4528 ],
4529 [
4530 "Don't bother buying Star Wars:<br>Battlefront if you're looking<br>for a first-class shooter --<br>there are far better games out<br>there. But if you're a Star<br>Wars freak and need a fix,<br>this title will suffice. Lore<br>Sjberg reviews Battlefront."
4531 ],
4532 [
4533 "More than by brain size or<br>tool-making ability, the human<br>species was set apart from its<br>ancestors by the ability to<br>jog mile after lung-stabbing<br>mile with greater endurance<br>than any other primate,<br>according to research<br>published today in the journal"
4534 ],
4535 [
4536 "Woodland Hills-based Brilliant<br>Digital Entertainment and its<br>subsidiary Altnet announced<br>yesterday that they have filed<br>a patent infringement suit<br>against the Recording Industry<br>Association of America (RIAA)."
4537 ],
4538 [
4539 "Sony Ericsson and Cingular<br>provide Z500a phones and<br>service for military families<br>to stay connected on today<br>#39;s quot;Dr. Phil Show<br>quot;."
4540 ],
4541 [
4542 "Officials at EarthLink #39;s<br>(Quote, Chart) R amp;D<br>facility have quietly released<br>a proof-of-concept file-<br>sharing application based on<br>the Session Initiated Protocol<br>(define)."
4543 ],
4544 [
4545 " quot;It #39;s your mail,<br>quot; the Google Web site<br>said. quot;You should be able<br>to choose how and where you<br>read it. You can even switch<br>to other e-mail services<br>without having to worry about<br>losing access to your<br>messages."
4546 ],
4547 [
4548 "The world #39;s only captive<br>great white shark made history<br>this week when she ate several<br>salmon fillets, marking the<br>first time that a white shark<br>in captivity"
4549 ],
4550 [
4551 "Communications aggregator<br>iPass said Monday that it is<br>adding in-flight Internet<br>access to its access<br>portfolio. Specifically, iPass<br>said it will add access<br>offered by Connexion by Boeing<br>to its list of access<br>providers."
4552 ],
4553 [
4554 "Company launches free test<br>version of service that<br>fosters popular Internet<br>activity."
4555 ],
4556 [
4557 "Outdated computer systems are<br>hampering the work of<br>inspectors, says the UN<br>nuclear agency."
4558 ],
4559 [
4560 "MacCentral - You Software Inc.<br>announced on Tuesday the<br>availability of You Control:<br>iTunes, a free\\download that<br>places iTunes controls in the<br>Mac OS X menu bar.<br>Without\\leaving the current<br>application, you can pause,<br>play, rewind or skip songs,\\as<br>well as control iTunes' volume<br>and even browse your entire<br>music library\\by album, artist<br>or genre. Each time a new song<br>plays, You Control:<br>iTunes\\also pops up a window<br>that displays the artist and<br>song name and the<br>album\\artwork, if it's in the<br>library. System requirements<br>call for Mac OS X\\v10.2.6 and<br>10MB free hard drive space.<br>..."
4561 ],
4562 [
4563 "The US Secret Service Thursday<br>announced arrests in eight<br>states and six foreign<br>countries of 28 suspected<br>cybercrime gangsters on<br>charges of identity theft,<br>computer fraud, credit-card<br>fraud, and conspiracy."
4564 ]
4565 ],
4566 "hovertemplate": "label=Sci/Tech<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
4567 "legendgroup": "Sci/Tech",
4568 "marker": {
4569 "color": "#EF553B",
4570 "size": 5,
4571 "symbol": "diamond"
4572 },
4573 "mode": "markers",
4574 "name": "Sci/Tech",
4575 "showlegend": true,
4576 "type": "scattergl",
4577 "x": [
4578 -50.70537,
4579 -47.977715,
4580 -51.65402,
4581 -37.6373,
4582 -36.581165,
4583 -19.791555,
4584 -20.928211,
4585 -22.567608,
4586 -19.96729,
4587 -49.124306,
4588 -7.3474283,
4589 -22.541676,
4590 -52.717,
4591 -28.148346,
4592 -42.825386,
4593 -5.8827424,
4594 -35.965088,
4595 -10.623615,
4596 -18.956379,
4597 -8.153443,
4598 -29.768171,
4599 -31.347673,
4600 -6.4607854,
4601 -41.868053,
4602 -13.634508,
4603 -11.594272,
4604 -13.830222,
4605 -26.233013,
4606 -10.061741,
4607 -32.693943,
4608 -38.45829,
4609 -15.162608,
4610 16.015558,
4611 -18.354656,
4612 -46.83205,
4613 -38.63723,
4614 -7.0522246,
4615 -50.323666,
4616 -44.325756,
4617 -7.6315646,
4618 -48.104885,
4619 -56.60167,
4620 -40.07204,
4621 -8.970166,
4622 -44.30361,
4623 -36.139923,
4624 -48.951195,
4625 29.55601,
4626 -21.136202,
4627 -21.265085,
4628 -41.619125,
4629 -16.407732,
4630 -33.503048,
4631 -40.584736,
4632 -24.227406,
4633 -41.094902,
4634 -41.256504,
4635 -18.041924,
4636 -18.929783,
4637 -45.789707,
4638 -35.619858,
4639 -29.50228,
4640 -36.813686,
4641 2.6427522,
4642 -23.344019,
4643 -44.347576,
4644 -8.361857,
4645 -17.157036,
4646 -18.672327,
4647 -18.132378,
4648 -8.266737,
4649 -34.572502,
4650 -5.21674,
4651 -21.22969,
4652 -42.24456,
4653 -7.7231383,
4654 -46.522186,
4655 -36.61156,
4656 -37.112934,
4657 27.892096,
4658 -5.4085217,
4659 2.6259706,
4660 -16.563955,
4661 -43.12336,
4662 -57.728573,
4663 -48.13403,
4664 -27.2014,
4665 -10.165841,
4666 -53.29632,
4667 -31.430248,
4668 -42.180077,
4669 -15.3164215,
4670 -47.9015,
4671 -23.828165,
4672 -31.504562,
4673 -6.3850884,
4674 -3.119768,
4675 -26.526276,
4676 -22.841238,
4677 -51.962658,
4678 -15.730567,
4679 -44.145668,
4680 -30.795404,
4681 -50.141148,
4682 -43.173016,
4683 -4.780475,
4684 -36.60279,
4685 -34.644447,
4686 -47.198746,
4687 -37.63518,
4688 -46.367523,
4689 -47.68558,
4690 -10.65396,
4691 -49.790844,
4692 -45.67376,
4693 -20.76551,
4694 -29.445877,
4695 4.37751,
4696 -45.453674,
4697 -44.030884,
4698 -24.544922,
4699 -50.093754,
4700 -19.335144,
4701 -25.326218,
4702 -6.78382,
4703 -50.14104,
4704 -33.647213,
4705 -9.488163,
4706 -14.337521,
4707 -29.272839,
4708 -43.886417,
4709 -32.545635,
4710 4.3835373,
4711 -43.219402,
4712 17.87465,
4713 -31.277052,
4714 -16.921326,
4715 -9.602789,
4716 -13.009839,
4717 -35.251965,
4718 -9.096614,
4719 2.5471764,
4720 -16.914656,
4721 -44.31037,
4722 -42.23089,
4723 33.389534,
4724 -37.813118,
4725 -45.167847,
4726 -36.155823,
4727 -33.989525,
4728 -30.086702,
4729 -1.0110728,
4730 -17.443365,
4731 -42.189774,
4732 -35.002357,
4733 -24.72687,
4734 31.629358,
4735 -25.166414,
4736 -7.6725793,
4737 -51.84964,
4738 -6.9841313,
4739 -50.175316,
4740 -35.0245,
4741 -35.842033,
4742 -48.693672,
4743 -44.228165,
4744 -31.057253,
4745 -33.267147,
4746 -36.05716,
4747 -7.2311153,
4748 -12.550289,
4749 -20.162544,
4750 -39.967007,
4751 -13.788036,
4752 -31.409056,
4753 -31.830273,
4754 -22.6749,
4755 -31.353453,
4756 27.913883,
4757 -28.206575,
4758 -19.676825,
4759 -27.176733,
4760 -44.44146,
4761 -51.24567,
4762 -10.997008,
4763 21.737896,
4764 -29.750324,
4765 -51.056225,
4766 -19.130821,
4767 -5.5860677,
4768 -24.740665,
4769 -47.064148,
4770 -54.69983,
4771 -7.06102,
4772 -43.44754,
4773 24.795843,
4774 -4.7836714,
4775 -24.956768,
4776 -53.22971,
4777 -6.0662427,
4778 -37.926384,
4779 -41.1264,
4780 -37.36757,
4781 -16.533398,
4782 -30.736622,
4783 -15.802876,
4784 -25.432766,
4785 -22.672857,
4786 -35.77931,
4787 -16.137821,
4788 -48.2029,
4789 -6.2585354,
4790 7.9719267,
4791 -53.251343,
4792 -9.297528,
4793 -44.267094,
4794 -19.017382,
4795 33.992294,
4796 -15.977553,
4797 -15.548051,
4798 -44.87483,
4799 -51.507732,
4800 -22.362936,
4801 -10.216267,
4802 -31.37848,
4803 -5.704888,
4804 -24.823088,
4805 -50.370255,
4806 -38.724506,
4807 -38.19549,
4808 -21.799944,
4809 -13.132145,
4810 -44.289158,
4811 -16.34018,
4812 -42.824986,
4813 -38.334126,
4814 -35.730442,
4815 -36.50344,
4816 -7.2380333,
4817 -40.239014,
4818 2.5284033,
4819 -49.050774,
4820 -22.21815,
4821 -25.737848,
4822 -17.621637,
4823 -12.631271,
4824 -22.281115,
4825 -43.594814,
4826 -15.313636,
4827 -21.579958,
4828 -46.839928,
4829 -8.932405,
4830 -38.67932,
4831 -6.674851,
4832 -6.503544,
4833 -36.837105,
4834 -4.2590623,
4835 -42.01228,
4836 -6.2482433,
4837 -39.613857,
4838 -46.561874,
4839 -45.638084,
4840 -21.206648,
4841 -34.547794,
4842 -18.876629,
4843 -17.48441,
4844 -27.667318,
4845 9.352251,
4846 -16.641712,
4847 -41.143227,
4848 -6.392582,
4849 -13.137335,
4850 -30.403149,
4851 -50.138874,
4852 -14.373312,
4853 -11.489995,
4854 -48.586517,
4855 -32.614243,
4856 -40.497093,
4857 -34.05016,
4858 -35.82806,
4859 -44.020023,
4860 -23.90992,
4861 17.625916,
4862 -27.855904,
4863 -52.830154,
4864 -48.07056,
4865 -19.067713,
4866 -40.71425,
4867 -25.576069,
4868 -23.095638,
4869 -40.87854,
4870 -38.34742,
4871 -50.887096,
4872 -42.132465,
4873 -14.928126,
4874 -42.33495,
4875 -45.8806,
4876 -51.873066,
4877 -35.644184,
4878 -43.46856,
4879 -35.958366,
4880 -54.239532,
4881 -39.886326,
4882 -43.70516,
4883 -8.241421,
4884 -12.890557,
4885 -23.360226,
4886 -33.456993,
4887 -34.14632,
4888 -30.420895,
4889 -19.05618,
4890 -48.503033,
4891 -18.99317,
4892 -14.034199,
4893 -35.493626,
4894 -16.14875,
4895 -36.11573,
4896 -16.320389,
4897 -19.673914,
4898 -9.829185,
4899 -52.1362,
4900 -20.01322,
4901 18.142248,
4902 -10.860374,
4903 -37.78618,
4904 -8.867661,
4905 5.742987,
4906 -21.27348,
4907 -30.542126,
4908 -5.9578004,
4909 -48.91647,
4910 -11.771681,
4911 -9.854177,
4912 -23.889015,
4913 -22.090435,
4914 -50.986782,
4915 -38.59416,
4916 -45.269844,
4917 -49.752243,
4918 -37.106304,
4919 -2.1609035,
4920 -39.611637,
4921 -38.19811,
4922 -4.4758306,
4923 -50.613956,
4924 -20.649567,
4925 -15.612729,
4926 -9.729161,
4927 -28.362564,
4928 -45.534595,
4929 -30.753082,
4930 -15.496077,
4931 -35.993237,
4932 -36.425526,
4933 -5.6656046,
4934 -31.978811,
4935 -7.6462755,
4936 -31.936037,
4937 -38.00677,
4938 -42.961407,
4939 -16.082205,
4940 -50.200237,
4941 -10.404932,
4942 -38.39936,
4943 -34.192577,
4944 -7.734347,
4945 -50.261745,
4946 -44.1901,
4947 -21.206255,
4948 -41.132812,
4949 -7.490298,
4950 -6.7789235,
4951 21.208382,
4952 -44.169758,
4953 -12.397968,
4954 -11.5951185,
4955 -8.326396,
4956 -20.166492,
4957 -15.611658,
4958 -38.040787,
4959 -30.962019,
4960 -45.082096,
4961 -47.16861,
4962 -4.7970433,
4963 -26.904469,
4964 -17.731619,
4965 -43.073074,
4966 -6.7949033,
4967 35.39813,
4968 -11.253943,
4969 -24.282412,
4970 -53.5042,
4971 -38.4294,
4972 -46.690304,
4973 -36.175987,
4974 -33.290382,
4975 -15.035485,
4976 -49.55056,
4977 -39.571285,
4978 -51.21703,
4979 -8.731081,
4980 -6.0078135,
4981 -11.813869,
4982 -1.1245881,
4983 -40.870914,
4984 -52.076916,
4985 -51.801567,
4986 -23.981367,
4987 -35.73722,
4988 0.08228831,
4989 -36.47172,
4990 -11.448383,
4991 -40.73366,
4992 -19.412077,
4993 -47.05097,
4994 -10.298156,
4995 -43.35723,
4996 -10.978807,
4997 51.953743,
4998 -8.411927,
4999 -13.247851,
5000 -47.515026,
5001 -4.658773,
5002 -29.961985,
5003 -12.003402,
5004 -17.52331,
5005 -50.23115,
5006 -48.06655,
5007 -7.6838555,
5008 -33.914284,
5009 -50.991158,
5010 -38.40225,
5011 -35.325897,
5012 -51.80827,
5013 -41.270184,
5014 -49.167038,
5015 5.044943,
5016 -27.684992,
5017 -17.990955,
5018 -2.3985894,
5019 17.726252,
5020 -34.57765,
5021 -39.0015,
5022 -14.16722,
5023 -50.34398,
5024 -19.314493,
5025 -17.94723,
5026 -24.707636,
5027 -5.6782784,
5028 -13.584895,
5029 -52.063236,
5030 -33.76177,
5031 -50.93683,
5032 -35.708652,
5033 -41.237144,
5034 -50.64484,
5035 -2.0928724,
5036 -41.631573,
5037 -15.368924,
5038 -41.6564,
5039 -37.111736,
5040 -37.09859,
5041 -41.025192,
5042 -2.1707618,
5043 -40.202778,
5044 -41.903214,
5045 -9.049681,
5046 -16.408047,
5047 -42.958614,
5048 -42.372177,
5049 -45.431026,
5050 -4.7174063,
5051 -30.901245,
5052 -46.568104,
5053 -2.3207862,
5054 -45.59506,
5055 -13.1443
5056 ],
5057 "xaxis": "x",
5058 "y": [
5059 -10.254759,
5060 -22.326504,
5061 -8.559602,
5062 -20.467894,
5063 -16.367886,
5064 34.67725,
5065 0.20705454,
5066 -2.1101115,
5067 -5.9476533,
5068 -0.62792206,
5069 17.02401,
5070 2.5558534,
5071 -10.392384,
5072 -18.170088,
5073 -29.326565,
5074 26.266212,
5075 -12.614066,
5076 14.819815,
5077 -0.6994232,
5078 14.150794,
5079 -22.118223,
5080 -19.087698,
5081 25.554472,
5082 -32.54127,
5083 -2.2139447,
5084 26.281322,
5085 -1.2898456,
5086 -8.973769,
5087 32.03464,
5088 -26.55557,
5089 -18.176107,
5090 -3.6315196,
5091 -19.35426,
5092 4.681029,
5093 -27.456821,
5094 -24.490698,
5095 29.56973,
5096 -10.1600275,
5097 -10.852377,
5098 22.864084,
5099 -10.734537,
5100 -6.189112,
5101 -13.330445,
5102 20.16529,
5103 -9.1425705,
5104 -23.877768,
5105 11.228575,
5106 17.663988,
5107 2.542931,
5108 -1.3406546,
5109 -23.981632,
5110 30.063469,
5111 -14.152756,
5112 -8.409088,
5113 19.963877,
5114 -15.70016,
5115 -19.558147,
5116 6.959669,
5117 -17.884281,
5118 -12.053112,
5119 -12.727203,
5120 -25.217607,
5121 -0.7906725,
5122 -10.548126,
5123 20.132593,
5124 10.375427,
5125 18.302557,
5126 -1.274212,
5127 5.588625,
5128 7.1431947,
5129 27.65378,
5130 -12.216588,
5131 3.5037541,
5132 -4.302394,
5133 16.477135,
5134 19.197943,
5135 -14.683218,
5136 -14.726069,
5137 -8.98979,
5138 16.493795,
5139 -23.418943,
5140 31.197924,
5141 -7.310227,
5142 -8.874298,
5143 -13.5169735,
5144 -7.2581453,
5145 22.63779,
5146 28.57203,
5147 -10.379873,
5148 -16.003376,
5149 3.1463404,
5150 -3.7059593,
5151 -23.257317,
5152 -9.050367,
5153 -14.212201,
5154 21.597916,
5155 28.315454,
5156 -9.711501,
5157 24.548212,
5158 -17.763275,
5159 5.0752234,
5160 -0.48519766,
5161 11.854107,
5162 -11.487356,
5163 -6.806543,
5164 32.15406,
5165 -2.8677607,
5166 -9.217092,
5167 -7.9709535,
5168 -9.329842,
5169 -23.302309,
5170 -0.9053779,
5171 14.969123,
5172 -12.578425,
5173 -21.124685,
5174 33.794212,
5175 -20.977274,
5176 -15.128482,
5177 -16.33133,
5178 -30.116133,
5179 -4.7339125,
5180 -24.043522,
5181 5.9628015,
5182 -11.766295,
5183 20.015493,
5184 -20.486948,
5185 -21.596968,
5186 16.84247,
5187 24.66648,
5188 -17.758942,
5189 -8.986503,
5190 -7.5245304,
5191 -15.130549,
5192 -6.4981833,
5193 -11.591567,
5194 21.901451,
5195 -0.6368593,
5196 16.802742,
5197 20.371767,
5198 0.94949424,
5199 31.862827,
5200 35.12017,
5201 24.827017,
5202 9.816621,
5203 -5.2393093,
5204 9.180699,
5205 3.9763682,
5206 -14.759153,
5207 -11.865506,
5208 -13.755454,
5209 -13.679028,
5210 20.333702,
5211 -1.8922254,
5212 -13.595177,
5213 -15.84722,
5214 25.674028,
5215 23.005444,
5216 -7.935221,
5217 24.642124,
5218 -19.237648,
5219 -20.576859,
5220 -14.856947,
5221 -17.656506,
5222 -14.13704,
5223 11.748135,
5224 -17.733555,
5225 -2.6014824,
5226 -13.317306,
5227 -0.7534798,
5228 16.867065,
5229 22.19843,
5230 -8.660773,
5231 -7.2729115,
5232 23.76637,
5233 -30.203144,
5234 -14.535694,
5235 -6.199936,
5236 -22.042368,
5237 14.838855,
5238 -23.169117,
5239 34.738625,
5240 10.819606,
5241 -10.898081,
5242 -19.525257,
5243 17.761076,
5244 13.325627,
5245 -13.576142,
5246 -25.388409,
5247 -0.5336322,
5248 17.181808,
5249 -4.1373553,
5250 -20.077517,
5251 -16.791988,
5252 13.435741,
5253 -22.73552,
5254 -0.6918705,
5255 27.578976,
5256 0.41720697,
5257 -21.062717,
5258 15.710144,
5259 -13.556541,
5260 -15.989742,
5261 -13.601137,
5262 -7.148113,
5263 19.323282,
5264 1.1989386,
5265 -0.47444645,
5266 0.94497335,
5267 9.556583,
5268 -4.4569497,
5269 -24.076357,
5270 21.659195,
5271 33.719093,
5272 19.704102,
5273 31.99901,
5274 -26.121319,
5275 26.534893,
5276 9.6071,
5277 3.7444665,
5278 21.501694,
5279 -17.915682,
5280 -17.60881,
5281 -2.6888435,
5282 32.299854,
5283 -15.889842,
5284 16.942707,
5285 0.2748501,
5286 -16.57776,
5287 -16.080286,
5288 -10.464009,
5289 11.700205,
5290 30.462563,
5291 -29.86582,
5292 -8.282391,
5293 -8.46684,
5294 -16.238358,
5295 -25.85015,
5296 19.385956,
5297 19.32553,
5298 -19.83609,
5299 -6.5198464,
5300 -20.836182,
5301 0.45974386,
5302 -8.057026,
5303 3.8825731,
5304 22.033895,
5305 -5.582006,
5306 -23.06022,
5307 -5.6566067,
5308 33.256733,
5309 -27.384535,
5310 34.042473,
5311 -3.056115,
5312 21.529955,
5313 17.78518,
5314 -29.090658,
5315 21.886444,
5316 -3.69288,
5317 20.052608,
5318 -0.2840251,
5319 -15.78091,
5320 -4.7497973,
5321 -1.3183376,
5322 -8.057265,
5323 3.0869732,
5324 -7.959283,
5325 -34.817635,
5326 34.081158,
5327 -0.1847365,
5328 -21.634756,
5329 25.563747,
5330 30.48236,
5331 -11.662108,
5332 -9.688497,
5333 -4.4100275,
5334 24.713762,
5335 -15.716439,
5336 21.239998,
5337 -10.980467,
5338 -5.3119135,
5339 -16.683647,
5340 -10.756376,
5341 27.087646,
5342 -6.474749,
5343 -16.08439,
5344 -14.420636,
5345 -7.351985,
5346 4.601816,
5347 10.600249,
5348 -4.315942,
5349 0.85024196,
5350 -8.745571,
5351 -10.188763,
5352 -5.876716,
5353 -3.0804467,
5354 -3.2769468,
5355 -19.281757,
5356 -15.235338,
5357 -15.53886,
5358 -19.303434,
5359 -12.302218,
5360 -23.051016,
5361 -20.775913,
5362 11.0288925,
5363 -15.161179,
5364 35.796543,
5365 4.53065,
5366 -3.197111,
5367 -9.126152,
5368 -5.3693423,
5369 -8.645808,
5370 26.929934,
5371 -3.2705798,
5372 -22.339233,
5373 6.1994753,
5374 -0.03827765,
5375 1.0350281,
5376 -2.2386749,
5377 10.1421995,
5378 21.500256,
5379 20.323536,
5380 -14.895687,
5381 3.4454656,
5382 13.368094,
5383 17.025469,
5384 -20.511335,
5385 20.105099,
5386 39.494793,
5387 33.45021,
5388 21.672586,
5389 15.536683,
5390 -21.343506,
5391 24.513098,
5392 28.953205,
5393 -1.2875158,
5394 -0.14630945,
5395 -5.8219385,
5396 -14.570528,
5397 -19.750566,
5398 -0.25747964,
5399 -6.1142654,
5400 24.168753,
5401 -17.26478,
5402 -12.292187,
5403 21.782167,
5404 -22.266432,
5405 5.911049,
5406 7.3130083,
5407 29.060263,
5408 -1.2906566,
5409 -5.6858554,
5410 11.88096,
5411 -14.269513,
5412 -17.597988,
5413 -13.744734,
5414 19.081799,
5415 25.979095,
5416 24.452019,
5417 -11.330729,
5418 -11.392148,
5419 1.1835473,
5420 -1.922125,
5421 18.76773,
5422 -5.1183553,
5423 14.371391,
5424 -9.079416,
5425 32.181087,
5426 -10.61583,
5427 -20.358099,
5428 -7.6430187,
5429 -5.257486,
5430 16.290205,
5431 24.053005,
5432 -5.443865,
5433 -30.894657,
5434 -1.7249132,
5435 -1.4501517,
5436 14.297588,
5437 1.5236746,
5438 26.836803,
5439 -7.542444,
5440 -4.085233,
5441 -9.243302,
5442 -22.380308,
5443 32.18937,
5444 -7.3226933,
5445 -32.17766,
5446 -15.654366,
5447 -3.2708795,
5448 0.07473384,
5449 26.989523,
5450 -8.599584,
5451 -15.78256,
5452 -16.991213,
5453 -8.202672,
5454 -10.86935,
5455 0.538039,
5456 -11.617886,
5457 3.5003624,
5458 -0.27149853,
5459 -1.4504046,
5460 21.914633,
5461 19.832611,
5462 22.365917,
5463 -22.19336,
5464 -19.892523,
5465 -11.016326,
5466 -18.943878,
5467 -9.76076,
5468 -25.935007,
5469 -21.395668,
5470 -19.286484,
5471 30.605867,
5472 -25.124516,
5473 19.076454,
5474 -20.217596,
5475 -4.427436,
5476 0.124456935,
5477 15.850318,
5478 14.106509,
5479 -25.880474,
5480 20.326845,
5481 -18.178284,
5482 18.546848,
5483 -8.462077,
5484 -6.078381,
5485 0.24295494,
5486 -14.893564,
5487 -22.965818,
5488 36.82579,
5489 -12.61784,
5490 18.366398,
5491 4.072649,
5492 1.2205616,
5493 -13.276994,
5494 -17.09381,
5495 -18.344118,
5496 33.12794,
5497 -12.617298,
5498 3.6332028,
5499 -24.02265,
5500 11.337199,
5501 6.917111,
5502 -9.203751,
5503 -4.5927486,
5504 0.687024,
5505 4.003382,
5506 -5.714998,
5507 -7.6352305,
5508 28.259352,
5509 -7.4210625,
5510 -14.774667,
5511 0.21726441,
5512 -20.630865,
5513 -0.4162142,
5514 -12.0516205,
5515 -24.923342,
5516 -23.75025,
5517 -23.006275,
5518 27.442217,
5519 -22.516329,
5520 -6.229835,
5521 -15.101339,
5522 -25.983875,
5523 24.170658,
5524 -13.358003,
5525 -32.53302,
5526 24.710947,
5527 -4.510418,
5528 -15.999681,
5529 -10.241354,
5530 -6.066459,
5531 27.73088,
5532 -4.162361,
5533 -11.81379,
5534 11.597373,
5535 -21.738821,
5536 -1.3630763
5537 ],
5538 "yaxis": "y"
5539 },
5540 {
5541 "customdata": [
5542 [
5543 "Newspapers in Greece reflect a<br>mixture of exhilaration that<br>the Athens Olympics proved<br>successful, and relief that<br>they passed off without any<br>major setback."
5544 ],
5545 [
5546 "Loudon, NH -- As the rain<br>began falling late Friday<br>afternoon at New Hampshire<br>International Speedway, the<br>rich in the Nextel Cup garage<br>got richer."
5547 ],
5548 [
5549 "AP - Ottawa Senators right<br>wing Marian Hossa is switching<br>European teams during the NHL<br>lockout."
5550 ],
5551 [
5552 "Chelsea terminated Romania<br>striker Adrian Mutu #39;s<br>contract, citing gross<br>misconduct after the player<br>failed a doping test for<br>cocaine and admitted taking<br>the drug, the English soccer<br>club said in a statement."
5553 ],
5554 [
5555 "The success of Paris #39; bid<br>for Olympic Games 2012 would<br>bring an exceptional<br>development for France for at<br>least 6 years, said Jean-<br>Francois Lamour, French<br>minister for Youth and Sports<br>on Tuesday."
5556 ],
5557 [
5558 "Madison, WI (Sports Network) -<br>Anthony Davis ran for 122<br>yards and two touchdowns to<br>lead No. 6 Wisconsin over<br>Northwestern, 24-12, to<br>celebrate Homecoming weekend<br>at Camp Randall Stadium."
5559 ],
5560 [
5561 "LaVar Arrington participated<br>in his first practice since<br>Oct. 25, when he aggravated a<br>knee injury that sidelined him<br>for 10 games."
5562 ],
5563 [
5564 " NEW YORK (Reuters) - Billie<br>Jean King cut her final tie<br>with the U.S. Fed Cup team<br>Tuesday when she retired as<br>coach."
5565 ],
5566 [
5567 "The Miami Dolphins arrived for<br>their final exhibition game<br>last night in New Orleans<br>short nine players."
5568 ],
5569 [
5570 "AP - From LSU at No. 1 to Ohio<br>State at No. 10, The AP<br>women's basketball poll had no<br>changes Monday."
5571 ],
5572 [
5573 "nother stage victory for race<br>leader Petter Solberg, his<br>fifth since the start of the<br>rally. The Subaru driver is<br>not pulling away at a fast<br>pace from Gronholm and Loeb<br>but the gap is nonetheless<br>increasing steadily."
5574 ],
5575 [
5576 "April 1980 -- Players strike<br>the last eight days of spring<br>training. Ninety-two<br>exhibition games are canceled.<br>June 1981 -- Players stage<br>first midseason strike in<br>history."
5577 ],
5578 [
5579 "On Sunday, the day after Ohio<br>State dropped to 0-3 in the<br>Big Ten with a 33-7 loss at<br>Iowa, the Columbus Dispatch<br>ran a single word above its<br>game story on the Buckeyes:<br>quot;Embarrassing."
5580 ],
5581 [
5582 "BOSTON - Curt Schilling got<br>his 20th win on the eve of<br>Boston #39;s big series with<br>the New York Yankees. Now he<br>wants much more. quot;In a<br>couple of weeks, hopefully, it<br>will get a lot better, quot;<br>he said after becoming"
5583 ],
5584 [
5585 "Shooed the ghosts of the<br>Bambino and the Iron Horse and<br>the Yankee Clipper and the<br>Mighty Mick, on his 73rd<br>birthday, no less, and turned<br>Yankee Stadium into a morgue."
5586 ],
5587 [
5588 "Gold medal-winning Marlon<br>Devonish says the men #39;s<br>4x100m Olympic relay triumph<br>puts British sprinting back on<br>the map. Devonish, Darren<br>Campbell, Jason Gardener and<br>Mark Lewis-Francis edged out<br>the American"
5589 ],
5590 [
5591 "he difficult road conditions<br>created a few incidents in the<br>first run of the Epynt stage.<br>Francois Duval takes his<br>second stage victory since the<br>start of the rally, nine<br>tenths better than Sebastien<br>Loeb #39;s performance in<br>second position."
5592 ],
5593 [
5594 "Tallahassee, FL (Sports<br>Network) - Florida State head<br>coach Bobby Bowden has<br>suspended senior wide receiver<br>Craphonso Thorpe for the<br>Seminoles #39; game against<br>fellow Atlantic Coast<br>Conference member Duke on<br>Saturday."
5595 ],
5596 [
5597 "Former champion Lleyton Hewitt<br>bristled, battled and<br>eventually blossomed as he<br>took another step towards a<br>second US Open title with a<br>second-round victory over<br>Moroccan Hicham Arazi on<br>Friday."
5598 ],
5599 [
5600 "As the Mets round out their<br>search for a new manager, the<br>club is giving a last-minute<br>nod to its past. Wally<br>Backman, an infielder for the<br>Mets from 1980-88 who played<br>second base on the 1986"
5601 ],
5602 [
5603 "AMSTERDAM, Aug 18 (Reuters) -<br>Midfielder Edgar Davids #39;s<br>leadership qualities and<br>never-say-die attitude have<br>earned him the captaincy of<br>the Netherlands under new<br>coach Marco van Basten."
5604 ],
5605 [
5606 "COUNTY KILKENNY, Ireland (PA)<br>-- Hurricane Jeanne has led to<br>world No. 1 Vijay Singh<br>pulling out of this week #39;s<br>WGC-American Express<br>Championship at Mount Juliet."
5607 ],
5608 [
5609 "Green Bay, WI (Sports Network)<br>- The Green Bay Packers will<br>be without the services of Pro<br>Bowl center Mike Flanagan for<br>the remainder of the season,<br>as he will undergo left knee<br>surgery."
5610 ],
5611 [
5612 "COLUMBUS, Ohio -- NCAA<br>investigators will return to<br>Ohio State University Monday<br>to take another look at the<br>football program after the<br>latest round of allegations<br>made by former players,<br>according to the Akron Beacon<br>Journal."
5613 ],
5614 [
5615 "Manchester United gave Alex<br>Ferguson a 1,000th game<br>anniversary present by<br>reaching the last 16 of the<br>Champions League yesterday,<br>while four-time winners Bayern<br>Munich romped into the second<br>round with a 5-1 beating of<br>Maccabi Tel Aviv."
5616 ],
5617 [
5618 "The last time the Angels<br>played the Texas Rangers, they<br>dropped two consecutive<br>shutouts at home in their most<br>agonizing lost weekend of the<br>season."
5619 ],
5620 [
5621 "SEATTLE - Chasing a nearly<br>forgotten ghost of the game,<br>Ichiro Suzuki broke one of<br>baseball #39;s oldest records<br>Friday night, smoking a single<br>up the middle for his 258th<br>hit of the year and breaking<br>George Sisler #39;s record for<br>the most hits in a season"
5622 ],
5623 [
5624 "Grace Park, her caddie - and<br>fans - were poking around in<br>the desert brush alongside the<br>18th fairway desperately<br>looking for her ball."
5625 ],
5626 [
5627 "Washington Redskins kicker<br>John Hall strained his right<br>groin during practice<br>Thursday, his third leg injury<br>of the season. Hall will be<br>held out of practice Friday<br>and is questionable for Sunday<br>#39;s game against the Chicago<br>Bears."
5628 ],
5629 [
5630 "The Florida Gators and<br>Arkansas Razorbacks meet for<br>just the sixth time Saturday.<br>The Gators hold a 4-1<br>advantage in the previous five<br>meetings, including last year<br>#39;s 33-28 win."
5631 ],
5632 [
5633 "AP - 1941 #151; Brooklyn<br>catcher Mickey Owen dropped a<br>third strike on Tommy Henrich<br>of what would have been the<br>last out of a Dodgers victory<br>against the New York Yankees.<br>Given the second chance, the<br>Yankees scored four runs for a<br>7-4 victory and a 3-1 lead in<br>the World Series, which they<br>ended up winning."
5634 ],
5635 [
5636 "Braves shortstop Rafael Furcal<br>was arrested on drunken<br>driving charges Friday, his<br>second D.U.I. arrest in four<br>years."
5637 ],
5638 [
5639 " ATHENS (Reuters) - Natalie<br>Coughlin's run of bad luck<br>finally took a turn for the<br>better when she won the gold<br>medal in the women's 100<br>meters backstroke at the<br>Athens Olympics Monday."
5640 ],
5641 [
5642 "AP - Pedro Feliz hit a<br>tiebreaking grand slam with<br>two outs in the eighth inning<br>for his fourth hit of the day,<br>and the Giants helped their<br>playoff chances with a 9-5<br>victory over the Los Angeles<br>Dodgers on Saturday."
5643 ],
5644 [
5645 "LEVERKUSEN/ROME, Dec 7 (SW) -<br>Dynamo Kiev, Bayer Leverkusen,<br>and Real Madrid all have a<br>good chance of qualifying for<br>the Champions League Round of<br>16 if they can get the right<br>results in Group F on<br>Wednesday night."
5646 ],
5647 [
5648 "Ed Hinkel made a diving,<br>fingertip catch for a key<br>touchdown and No. 16 Iowa<br>stiffened on defense when it<br>needed to most to beat Iowa<br>State 17-10 Saturday."
5649 ],
5650 [
5651 "During last Sunday #39;s<br>Nextel Cup race, amid the<br>ongoing furor over Dale<br>Earnhardt Jr. #39;s salty<br>language, NBC ran a commercial<br>for a show coming on later<br>that night called quot;Law<br>amp; Order: Criminal Intent."
5652 ],
5653 [
5654 "AP - After playing in hail,<br>fog and chill, top-ranked<br>Southern California finishes<br>its season in familiar<br>comfort. The Trojans (9-0, 6-0<br>Pacific-10) have two games at<br>home #151; against Arizona on<br>Saturday and Notre Dame on<br>Nov. 27 #151; before their<br>rivalry game at UCLA."
5655 ],
5656 [
5657 "The remnants of Hurricane<br>Jeanne rained out Monday's<br>game between the Mets and the<br>Atlanta Braves. It will be<br>made up Tuesday as part of a<br>doubleheader."
5658 ],
5659 [
5660 "AP - NASCAR is not expecting<br>any immediate changes to its<br>top-tier racing series<br>following the merger between<br>telecommunications giant<br>Sprint Corp. and Nextel<br>Communications Inc."
5661 ],
5662 [
5663 "Like wide-open races? You<br>#39;ll love the Big 12 North.<br>Here #39;s a quick morning<br>line of the Big 12 North as it<br>opens conference play this<br>weekend."
5664 ],
5665 [
5666 "Taquan Dean scored 22 points,<br>Francisco Garcia added 19 and<br>No. 13 Louisville withstood a<br>late rally to beat Florida<br>74-70 Saturday."
5667 ],
5668 [
5669 "NEW YORK -- This was all about<br>Athens, about redemption for<br>one and validation for the<br>other. Britain's Paula<br>Radcliffe, the fastest female<br>marathoner in history, failed<br>to finish either of her<br>Olympic races last summer.<br>South Africa's Hendrik Ramaala<br>was a five-ringed dropout,<br>too, reinforcing his<br>reputation as a man who could<br>go only half the distance."
5670 ],
5671 [
5672 "LONDON -- Ernie Els has set<br>his sights on an improved<br>putting display this week at<br>the World Golf Championships<br>#39; NEC Invitational in<br>Akron, Ohio, after the<br>disappointment of tying for<br>fourth place at the PGA<br>Championship last Sunday."
5673 ],
5674 [
5675 "Fiji #39;s Vijay Singh<br>replaced Tiger Woods as the<br>world #39;s No.1 ranked golfer<br>today by winning the PGA<br>Deutsche Bank Championship."
5676 ],
5677 [
5678 "LEIPZIG, Germany : Jurgen<br>Klinsmann enjoyed his first<br>home win as German manager<br>with his team defeating ten-<br>man Cameroon 3-0 in a friendly<br>match."
5679 ],
5680 [
5681 "AP - Kevin Brown had a chance<br>to claim a place in Yankees<br>postseason history with his<br>start in Game 7 of the AL<br>championship series."
5682 ],
5683 [
5684 "HOMESTEAD, Fla. -- Kurt Busch<br>got his first big break in<br>NASCAR by winning a 1999<br>talent audition nicknamed<br>quot;The Gong Show. quot; He<br>was selected from dozens of<br>unknown, young race drivers to<br>work for one of the sport<br>#39;s most famous team owners,<br>Jack Roush."
5685 ],
5686 [
5687 "Zurich, Switzerland (Sports<br>Network) - Former world No. 1<br>Venus Williams advanced on<br>Thursday and will now meet<br>Wimbledon champion Maria<br>Sharapova in the quarterfinals<br>at the \\$1."
5688 ],
5689 [
5690 "INDIA #39;S cricket chiefs<br>began a frenetic search today<br>for a broadcaster to show next<br>month #39;s home series<br>against world champion<br>Australia after cancelling a<br>controversial \\$US308 million<br>(\\$440 million) television<br>deal."
5691 ],
5692 [
5693 "The International Olympic<br>Committee (IOC) has urged<br>Beijing to ensure the city is<br>ready to host the 2008 Games<br>well in advance, an official<br>said on Wednesday."
5694 ],
5695 [
5696 "Virginia Tech scores 24 points<br>off four first-half turnovers<br>in a 55-6 wipeout of Maryland<br>on Thursday to remain alone<br>atop the ACC."
5697 ],
5698 [
5699 "AP - Martina Navratilova's<br>long, illustrious career will<br>end without an Olympic medal.<br>The 47-year-old Navratilova<br>and Lisa Raymond lost 6-4,<br>4-6, 6-4 on Thursday night to<br>fifth-seeded Shinobu Asagoe<br>and Ai Sugiyama of Japan in<br>the quarterfinals, one step<br>shy of the medal round."
5700 ],
5701 [
5702 "PSV Eindhoven re-established<br>their five-point lead at the<br>top of the Dutch Eredivisie<br>today with a 2-0 win at<br>Vitesse Arnhem. Former<br>Sheffield Wednesday striker<br>Gerald Sibon put PSV ahead in<br>the 56th minute"
5703 ],
5704 [
5705 "TODAY AUTO RACING 3 p.m. --<br>NASCAR Nextel Cup Sylvania 300<br>qualifying at N.H.<br>International Speedway,<br>Loudon, N.H., TNT PRO BASEBALL<br>7 p.m. -- Red Sox at New York<br>Yankees, Ch. 38, WEEI (850)<br>(on cable systems where Ch. 38<br>is not available, the game<br>will air on NESN); Chicago<br>Cubs at Cincinnati, ESPN 6<br>p.m. -- Eastern League finals:<br>..."
5706 ],
5707 [
5708 "MUMBAI, SEPTEMBER 21: The<br>Board of Control for Cricket<br>in India (BCCI) today informed<br>the Bombay High Court that it<br>was cancelling the entire<br>tender process regarding<br>cricket telecast rights as<br>also the conditional deal with<br>Zee TV."
5709 ],
5710 [
5711 "JEJU, South Korea : Grace Park<br>of South Korea won an LPGA<br>Tour tournament, firing a<br>seven-under-par 65 in the<br>final round of the<br>1.35-million dollar CJ Nine<br>Bridges Classic."
5712 ],
5713 [
5714 "AP - The NHL will lock out its<br>players Thursday, starting a<br>work stoppage that threatens<br>to keep the sport off the ice<br>for the entire 2004-05 season."
5715 ],
5716 [
5717 "When Paula Radcliffe dropped<br>out of the Olympic marathon<br>miles from the finish, she<br>sobbed uncontrollably.<br>Margaret Okayo knew the<br>feeling."
5718 ],
5719 [
5720 "First baseman Richie Sexson<br>agrees to a four-year contract<br>with the Seattle Mariners on<br>Wednesday."
5721 ],
5722 [
5723 "Notes and quotes from various<br>drivers following California<br>Speedway #39;s Pop Secret 500.<br>Jeff Gordon slipped to second<br>in points following an engine<br>failure while Jimmie Johnson<br>moved back into first."
5724 ],
5725 [
5726 " MEMPHIS, Tenn. (Sports<br>Network) - The Memphis<br>Grizzlies signed All-Star<br>forward Pau Gasol to a multi-<br>year contract on Friday.<br>Terms of the deal were not<br>announced."
5727 ],
5728 [
5729 "Andre Agassi brushed past<br>Jonas Bjorkman 6-3 6-4 at the<br>Stockholm Open on Thursday to<br>set up a quarter-final meeting<br>with Spanish sixth seed<br>Fernando Verdasco."
5730 ],
5731 [
5732 " BOSTON (Reuters) - Boston was<br>tingling with anticipation on<br>Saturday as the Red Sox<br>prepared to host Game One of<br>the World Series against the<br>St. Louis Cardinals and take a<br>step toward ridding<br>themselves of a hex that has<br>hung over the team for eight<br>decades."
5733 ],
5734 [
5735 "FOR the first time since his<br>appointment as Newcastle<br>United manager, Graeme Souness<br>has been required to display<br>the strong-arm disciplinary<br>qualities that, to Newcastle<br>directors, made"
5736 ],
5737 [
5738 "WHY IT HAPPENED Tom Coughlin<br>won his first game as Giants<br>coach and immediately<br>announced a fine amnesty for<br>all Giants. Just kidding."
5739 ],
5740 [
5741 "A second-place finish in his<br>first tournament since getting<br>married was good enough to<br>take Tiger Woods from third to<br>second in the world rankings."
5742 ],
5743 [
5744 " COLORADO SPRINGS, Colorado<br>(Reuters) - World 400 meters<br>champion Jerome Young has been<br>given a lifetime ban from<br>athletics for a second doping<br>offense, the U.S. Anti-Doping<br>Agency (USADA) said Wednesday."
5745 ],
5746 [
5747 "LONDON - In two years, Arsenal<br>will play their home matches<br>in the Emirates stadium. That<br>is what their new stadium at<br>Ashburton Grove will be called<br>after the Premiership<br>champions yesterday agreed to<br>the"
5748 ],
5749 [
5750 "KNOXVILLE, Tenn. -- Jason<br>Campbell threw for 252 yards<br>and two touchdowns, and No. 8<br>Auburn proved itself as a<br>national title contender by<br>overwhelming No. 10 Tennessee,<br>34-10, last night."
5751 ],
5752 [
5753 "WASHINGTON -- Another<br>Revolution season concluded<br>with an overtime elimination.<br>Last night, the Revolution<br>thrice rallied from deficits<br>for a 3-3 tie with D.C. United<br>in the Eastern Conference<br>final, then lost in the first-<br>ever Major League Soccer match<br>decided by penalty kicks."
5754 ],
5755 [
5756 "Dwyane Wade calls himself a<br>quot;sidekick, quot; gladly<br>accepting the role Kobe Bryant<br>never wanted in Los Angeles.<br>And not only does second-year<br>Heat point"
5757 ],
5758 [
5759 "World number one golfer Vijay<br>Singh of Fiji has captured his<br>eighth PGA Tour event of the<br>year with a win at the 84<br>Lumber Classic in Farmington,<br>Pennsylvania."
5760 ],
5761 [
5762 "The noise was deafening and<br>potentially unsettling in the<br>minutes before the start of<br>the men #39;s Olympic<br>200-meter final. The Olympic<br>Stadium crowd chanted<br>quot;Hellas!"
5763 ],
5764 [
5765 "Brazilian forward Ronaldinho<br>scored a sensational goal for<br>Barcelona against Milan,<br>making for a last-gasp 2-1.<br>The 24-year-old #39;s<br>brilliant left-foot hit at the<br>Nou Camp Wednesday night sent<br>Barcelona atop of Group F."
5766 ],
5767 [
5768 "Bee Staff Writer. SANTA CLARA<br>- Andre Carter #39;s back<br>injury has kept him out of the<br>49ers #39; lineup since Week<br>1. It #39;s also interfering<br>with him rooting on his alma<br>mater in person."
5769 ],
5770 [
5771 "AP - Kellen Winslow Jr. ended<br>his second NFL holdout Friday."
5772 ],
5773 [
5774 "HOUSTON - With only a few<br>seconds left in a certain<br>victory for Miami, Peyton<br>Manning threw a meaningless<br>6-yard touchdown pass to<br>Marvin Harrison to cut the<br>score to 24-15."
5775 ],
5776 [
5777 "DEADLY SCORER: Manchester<br>United #39;s Wayne Rooney<br>celebrating his three goals<br>against Fenerbahce this week<br>at Old Trafford. (AP)."
5778 ],
5779 [
5780 "You can feel the confidence<br>level, not just with Team<br>Canada but with all of Canada.<br>There #39;s every expectation,<br>from one end of the bench to<br>the other, that Martin Brodeur<br>is going to hold the fort."
5781 ],
5782 [
5783 "Heading into the first game of<br>a new season, every team has<br>question marks. But in 2004,<br>the Denver Broncos seemed to<br>have more than normal."
5784 ],
5785 [
5786 "Anaheim, Calif. - There is a<br>decidedly right lean to the<br>three-time champions of the<br>American League Central. In a<br>span of 26 days, the Minnesota<br>Twins lost the left side of<br>their infield to free agency."
5787 ],
5788 [
5789 "With the NFL trading deadline<br>set for 4 p.m. Tuesday,<br>Patriots coach Bill Belichick<br>said there didn't seem to be<br>much happening on the trade<br>front around the league."
5790 ],
5791 [
5792 "AP - David Beckham broke his<br>rib moments after scoring<br>England's second goal in<br>Saturday's 2-0 win over Wales<br>in a World Cup qualifying<br>game."
5793 ],
5794 [
5795 "Nothing changed at the top of<br>Serie A as all top teams won<br>their games to keep the<br>distance between one another<br>unaltered. Juventus came back<br>from behind against Lazio to<br>win thanks to another goal by<br>Ibrahimovic"
5796 ],
5797 [
5798 "RICHMOND, Va. Jeremy Mayfield<br>won his first race in over<br>four years, taking the<br>Chevrolet 400 at Richmond<br>International Raceway after<br>leader Kurt Busch ran out of<br>gas eight laps from the<br>finish."
5799 ],
5800 [
5801 "AP - Track star Marion Jones<br>filed a defamation lawsuit<br>Wednesday against the man<br>whose company is at the center<br>of a federal investigation<br>into illegal steroid use among<br>some of the nation's top<br>athletes."
5802 ],
5803 [
5804 "England #39;s players hit out<br>at cricket #39;s authorities<br>tonight and claimed they had<br>been used as quot;political<br>pawns quot; after the Zimbabwe<br>government produced a<br>spectacular U-turn to ensure<br>the controversial one-day<br>series will go ahead."
5805 ],
5806 [
5807 "AP - The Japanese won the<br>pregame home run derby. Then<br>the game started and the major<br>league All-Stars put their<br>bats to work. Back-to-back<br>home runs by Moises Alou and<br>Vernon Wells in the fourth<br>inning and by Johnny Estrada<br>and Brad Wilkerson in the<br>ninth powered the major<br>leaguers past the Japanese<br>stars 7-3 Sunday for a 3-0<br>lead in the eight-game series."
5808 ],
5809 [
5810 "With Chelsea losing their<br>unbeaten record and Manchester<br>United failing yet again to<br>win, William Hill now make<br>Arsenal red-hot 2/5 favourites<br>to retain the title."
5811 ],
5812 [
5813 "Theresa special bookcase in Al<br>Grohs office completely full<br>of game plans from his days in<br>the NFL. Green ones are from<br>the Jets."
5814 ],
5815 [
5816 "Newcastle ensured their place<br>as top seeds in Friday #39;s<br>third round UEFA Cup draw<br>after holding Sporting Lisbon<br>to a 1-1 draw at St James #39;<br>Park."
5817 ],
5818 [
5819 "CBC SPORTS ONLINE - Bode<br>Miller continued his<br>impressive 2004-05 World Cup<br>skiing season by winning a<br>night slalom race in<br>Sestriere, Italy on Monday."
5820 ],
5821 [
5822 "Damien Rhodes scored on a<br>2-yard run in the second<br>overtime, then Syracuse's<br>defense stopped Pittsburgh on<br>fourth and 1, sending the<br>Orange to a 38-31 victory<br>yesterday in Syracuse, N.Y."
5823 ],
5824 [
5825 "AP - Anthony Harris scored 18<br>of his career-high 23 points<br>in the second half to help<br>Miami upset No. 19 Florida<br>72-65 Saturday and give first-<br>year coach Frank Haith his<br>biggest victory."
5826 ],
5827 [
5828 "AP - The five cities looking<br>to host the 2012 Summer Games<br>submitted bids to the<br>International Olympic<br>Committee on Monday, entering<br>the final stage of a long<br>process in hopes of landing<br>one of the biggest prizes in<br>sports."
5829 ],
5830 [
5831 "The FIA has already cancelled<br>todays activities at Suzuka as<br>Super Typhoon Ma-On heads<br>towards the 5.807km circuit.<br>Saturday practice has been<br>cancelled altogether while<br>pre-qualifying and final<br>qualifying"
5832 ],
5833 [
5834 " GRAND PRAIRIE, Texas<br>(Reuters) - Betting on horses<br>was banned in Texas until as<br>recently as 1987. Times have<br>changed rapidly since.<br>Saturday, Lone Star Park race<br>track hosts the \\$14 million<br>Breeders Cup, global racing's<br>end-of-season extravaganza."
5835 ],
5836 [
5837 "It might be a stay of<br>execution for Coach P, or it<br>might just be a Christmas<br>miracle come early. SU #39;s<br>upset win over BC has given<br>hope to the Orange playing in<br>a post season Bowl game."
5838 ],
5839 [
5840 "PHIL Neville insists<br>Manchester United don #39;t<br>fear anyone in the Champions<br>League last 16 and declared:<br>quot;Bring on the Italians."
5841 ],
5842 [
5843 "TORONTO -- Toronto Raptors<br>point guard Alvin Williams<br>will miss the rest of the<br>season after undergoing<br>surgery on his right knee<br>Monday."
5844 ],
5845 [
5846 "AP - Tennessee's two freshmen<br>quarterbacks have Volunteers<br>fans fantasizing about the<br>next four years. Brent<br>Schaeffer and Erik Ainge<br>surprised many with the nearly<br>seamless way they rotated<br>throughout a 42-17 victory<br>over UNLV on Sunday night."
5847 ],
5848 [
5849 "MADRID, Aug 18 (Reuters) -<br>Portugal captain Luis Figo<br>said on Wednesday he was<br>taking an indefinite break<br>from international football,<br>but would not confirm whether<br>his decision was final."
5850 ],
5851 [
5852 "AP - Shaun Rogers is in the<br>backfield as often as some<br>running backs. Whether teams<br>dare to block Detroit's star<br>defensive tackle with one<br>player or follow the trend of<br>double-teaming him, he often<br>rips through offensive lines<br>with a rare combination of<br>size, speed, strength and<br>nimble footwork."
5853 ],
5854 [
5855 "The Lions and Eagles entered<br>Sunday #39;s game at Ford<br>Field in the same place --<br>atop their respective<br>divisions -- and with<br>identical 2-0 records."
5856 ],
5857 [
5858 "After Marcos Moreno threw four<br>more interceptions in last<br>week's 14-13 overtime loss at<br>N.C. A T, Bison Coach Ray<br>Petty will start Antoine<br>Hartfield against Norfolk<br>State on Saturday."
5859 ],
5860 [
5861 "SOUTH WILLIAMSPORT, Pa. --<br>Looking ahead to the US<br>championship game almost cost<br>Conejo Valley in the<br>semifinals of the Little<br>League World Series."
5862 ],
5863 [
5864 "The Cubs didn #39;t need to<br>fly anywhere near Florida to<br>be in the eye of the storm.<br>For a team that is going on<br>100 years since last winning a<br>championship, the only thing<br>they never are at a loss for<br>is controversy."
5865 ],
5866 [
5867 "KETTERING, Ohio Oct. 12, 2004<br>- Cincinnati Bengals defensive<br>end Justin Smith pleaded not<br>guilty to a driving under the<br>influence charge."
5868 ],
5869 [
5870 "MINNEAPOLIS -- For much of the<br>2004 season, Twins pitcher<br>Johan Santana didn #39;t just<br>beat opposing hitters. Often,<br>he overwhelmed and owned them<br>in impressive fashion."
5871 ],
5872 [
5873 "At a charity auction in New<br>Jersey last weekend, baseball<br>memorabilia dealer Warren<br>Heller was approached by a man<br>with an unusual but topical<br>request."
5874 ],
5875 [
5876 "INTER Milan coach Roberto<br>Mancini believes the club<br>#39;s lavish (northern) summer<br>signings will enable them to<br>mount a serious Serie A<br>challenge this season."
5877 ],
5878 [
5879 "AP - Brad Ott shot an 8-under<br>64 on Sunday to win the<br>Nationwide Tour's Price Cutter<br>Charity Championship for his<br>first Nationwide victory."
5880 ],
5881 [
5882 "AP - New York Jets running<br>back Curtis Martin passed Eric<br>Dickerson and Jerome Bettis on<br>the NFL career rushing list<br>Sunday against the St. Louis<br>Rams, moving to fourth all-<br>time."
5883 ],
5884 [
5885 "Instead of standing for ante<br>meridian and post meridian,<br>though, fans will remember the<br>time periods of pre-Mia and<br>after-Mia. After playing for<br>18 years and shattering nearly<br>every record"
5886 ],
5887 [
5888 "Stephon Marbury, concerned<br>about his lousy shooting in<br>Athens, used an off day to go<br>to the gym and work on his<br>shot. By finding his range, he<br>saved the United States #39;<br>hopes for a basketball gold<br>medal."
5889 ],
5890 [
5891 "AP - Randy Moss is expected to<br>play a meaningful role for the<br>Minnesota Vikings this weekend<br>against the Giants, even<br>without a fully healed right<br>hamstring."
5892 ],
5893 [
5894 "Pros: Fits the recent profile<br>(44, past PGA champion, fiery<br>Ryder Cup player); the job is<br>his if he wants it. Cons:<br>Might be too young to be<br>willing to burn two years of<br>play on tour."
5895 ],
5896 [
5897 "Elmer Santos scored in the<br>second half, lifting East<br>Boston to a 1-0 win over<br>Brighton yesterday afternoon<br>and giving the Jets an early<br>leg up in what is shaping up<br>to be a tight Boston City<br>League race."
5898 ],
5899 [
5900 "Saints special teams captain<br>Steve Gleason expects to be<br>fined by the league after<br>being ejected from Sunday's<br>game against the Carolina<br>Panthers for throwing a punch."
5901 ],
5902 [
5903 "Play has begun in the<br>Australian Masters at<br>Huntingdale in Melbourne with<br>around half the field of 120<br>players completing their first<br>rounds."
5904 ],
5905 [
5906 "LOUISVILLE, Ky. - Louisville<br>men #39;s basketball head<br>coach Rick Pitino and senior<br>forward Ellis Myles met with<br>members of the media on Friday<br>to preview the Cardinals #39;<br>home game against rival<br>Kentucky on Satursday."
5907 ],
5908 [
5909 "AP - Sounds like David<br>Letterman is as big a \"Pops\"<br>fan as most everyone else."
5910 ],
5911 [
5912 "Arsenal was held to a 1-1 tie<br>by struggling West Bromwich<br>Albion on Saturday, failing to<br>pick up a Premier League<br>victory when Rob Earnshaw<br>scored with 11 minutes left."
5913 ],
5914 [
5915 "Baseball #39;s executive vice<br>president Sandy Alderson<br>insisted last month that the<br>Cubs, disciplined for an<br>assortment of run-ins with<br>umpires, would not be targeted<br>the rest of the season by<br>umpires who might hold a<br>grudge."
5916 ],
5917 [
5918 "As Superman and Batman would<br>no doubt reflect during their<br>cigarette breaks, the really<br>draining thing about being a<br>hero was that you have to keep<br>riding to the rescue."
5919 ],
5920 [
5921 "AP - Eric Hinske and Vernon<br>Wells homered, and the Toronto<br>Blue Jays completed a three-<br>game sweep of the Baltimore<br>Orioles with an 8-5 victory<br>Sunday."
5922 ],
5923 [
5924 " NEW YORK (Reuters) - Todd<br>Walker homered, had three hits<br>and drove in four runs to lead<br>the Chicago Cubs to a 12-5 win<br>over the Cincinnati Reds in<br>National League play at<br>Wrigley Field on Monday."
5925 ],
5926 [
5927 "MIAMI (Sports Network) -<br>Shaquille O #39;Neal made his<br>home debut, but once again it<br>was Dwyane Wade stealing the<br>show with 28 points as the<br>Miami Heat downed the<br>Cleveland Cavaliers, 92-86, in<br>front of a record crowd at<br>AmericanAirlines Arena."
5928 ],
5929 [
5930 "AP - The San Diego Chargers<br>looked sharp #151; and played<br>the same way. Wearing their<br>powder-blue throwback jerseys<br>and white helmets from the<br>1960s, the Chargers did almost<br>everything right in beating<br>the Jacksonville Jaguars 34-21<br>on Sunday."
5931 ],
5932 [
5933 "NERVES - no problem. That<br>#39;s the verdict of Jose<br>Mourinho today after his<br>Chelsea side gave a resolute<br>display of character at<br>Highbury."
5934 ],
5935 [
5936 "AP - The latest low point in<br>Ron Zook's tenure at Florida<br>even has the coach wondering<br>what went wrong. Meanwhile,<br>Sylvester Croom's first big<br>win at Mississippi State has<br>given the Bulldogs and their<br>fans a reason to believe in<br>their first-year leader.<br>Jerious Norwood's 37-yard<br>touchdown run with 32 seconds<br>remaining lifted the Bulldogs<br>to a 38-31 upset of the 20th-<br>ranked Gators on Saturday."
5937 ],
5938 [
5939 "Someone forgot to inform the<br>US Olympic basketball team<br>that it was sent to Athens to<br>try to win a gold medal, not<br>to embarrass its country."
5940 ],
5941 [
5942 "Ten-man Paris St Germain<br>clinched their seventh<br>consecutive victory over arch-<br>rivals Olympique Marseille<br>with a 2-1 triumph in Ligue 1<br>on Sunday thanks to a second-<br>half winner by substitute<br>Edouard Cisse."
5943 ],
5944 [
5945 "Roy Oswalt wasn #39;t<br>surprised to hear the Astros<br>were flying Sunday night<br>through the remnants of a<br>tropical depression that<br>dumped several inches of rain<br>in Louisiana and could bring<br>showers today in Atlanta."
5946 ],
5947 [
5948 "AP - This hardly seemed<br>possible when Pitt needed<br>frantic rallies to overcome<br>Division I-AA Furman or Big<br>East cellar dweller Temple. Or<br>when the Panthers could barely<br>move the ball against Ohio<br>#151; not Ohio State, but Ohio<br>U."
5949 ],
5950 [
5951 "Everyone is moaning about the<br>fallout from last weekend but<br>they keep on reporting the<br>aftermath. #39;The fall-out<br>from the so-called<br>quot;Battle of Old Trafford<br>quot; continues to settle over<br>the nation and the debate"
5952 ],
5953 [
5954 "American Lindsay Davenport<br>regained the No. 1 ranking in<br>the world for the first time<br>since early 2002 by defeating<br>Dinara Safina of Russia 6-4,<br>6-2 in the second round of the<br>Kremlin Cup on Thursday."
5955 ],
5956 [
5957 "Freshman Jeremy Ito kicked<br>four field goals and Ryan<br>Neill scored on a 31-yard<br>interception return to lead<br>improving Rutgers to a 19-14<br>victory on Saturday over<br>visiting Michigan State."
5958 ],
5959 [
5960 "Third-seeded Guillermo Canas<br>defeated Guillermo Garcia-<br>Lopez of Spain 7-6 (1), 6-3<br>Monday on the first day of the<br>Shanghai Open on Monday."
5961 ],
5962 [
5963 "But to play as feebly as it<br>did for about 35 minutes last<br>night in Game 1 of the WNBA<br>Finals and lose by only four<br>points -- on the road, no less<br>-- has to be the best<br>confidence builder since Cindy<br>St."
5964 ],
5965 [
5966 "With yesterday #39;s report on<br>its athletic department<br>violations completed, the<br>University of Washington says<br>it is pleased to be able to<br>move forward."
5967 ],
5968 [
5969 "Sammy Sosa was fined \\$87,400<br>-- one day's salary -- for<br>arriving late to the Cubs'<br>regular-season finale at<br>Wrigley Field and leaving the<br>game early. The slugger's<br>agent, Adam Katz , said<br>yesterday Sosa most likely<br>will file a grievance. Sosa<br>arrived 70 minutes before<br>Sunday's first pitch, and he<br>apparently left 15 minutes<br>after the game started without<br>..."
5970 ],
5971 [
5972 "Is the Oklahoma defense a<br>notch below its predecessors?<br>Is Texas #39; offense a step-<br>ahead? Why is Texas Tech<br>feeling good about itself<br>despite its recent loss?"
5973 ],
5974 [
5975 "New York gets 57 combined<br>points from its starting<br>backcourt of Jamal Crawford<br>and Stephon Marbury and tops<br>Denver, 107-96."
5976 ],
5977 [
5978 "AP - Shawn Marion had a<br>season-high 33 points and 15<br>rebounds, leading the Phoenix<br>Suns on a fourth-quarter<br>comeback despite the absence<br>of Steve Nash in a 95-86 win<br>over the New Orleans Hornets<br>on Friday night."
5979 ],
5980 [
5981 "Messina upset defending<br>champion AC Milan 2-1<br>Wednesday, while Juventus won<br>its third straight game to<br>stay alone atop the Italian<br>league standings."
5982 ],
5983 [
5984 "AP - Padraig Harrington<br>rallied to a three-stroke<br>victory in the German Masters<br>on a windy Sunday, closing<br>with a 2-under-par 70 and<br>giving his game a big boost<br>before the Ryder Cup."
5985 ],
5986 [
5987 "Ironically it was the first<br>regular season game for the<br>Carolina Panthers that not<br>only began the history of the<br>franchise, but also saw the<br>beginning of a rivalry that<br>goes on to this day."
5988 ],
5989 [
5990 "Baltimore Ravens running back<br>Jamal Lewis did not appear at<br>his arraignment Friday, but<br>his lawyers entered a not<br>guilty plea on charges in an<br>expanded drug conspiracy<br>indictment."
5991 ],
5992 [
5993 "After serving a five-game<br>suspension, Milton Bradley<br>worked out with the Dodgers as<br>they prepared for Tuesday's<br>opener against the St. Louis<br>Cardinals."
5994 ],
5995 [
5996 "AP - Prime Time won't be<br>playing in prime time this<br>time. Deion Sanders was on the<br>inactive list and missed a<br>chance to strut his stuff on<br>\"Monday Night Football.\""
5997 ],
5998 [
5999 "The man who delivered the<br>knockout punch was picked up<br>from the Seattle scrap heap<br>just after the All-Star Game.<br>Before that, John Olerud<br>certainly hadn't figured on<br>facing Pedro Martinez in<br>Yankee Stadium in October."
6000 ],
6001 [
6002 "LONDON : A consortium,<br>including former world<br>champion Nigel Mansell, claims<br>it has agreed terms to ensure<br>Silverstone remains one of the<br>venues for the 2005 Formula<br>One world championship."
6003 ],
6004 [
6005 " BATON ROUGE, La. (Sports<br>Network) - LSU has named Les<br>Miles its new head football<br>coach, replacing Nick Saban."
6006 ],
6007 [
6008 "AP - The Chicago Blackhawks<br>re-signed goaltender Michael<br>Leighton to a one-year<br>contract Wednesday."
6009 ],
6010 [
6011 "ATHENS -- She won her first<br>Olympic gold medal in kayaking<br>when she was 18, the youngest<br>paddler to do so in Games<br>history. Yesterday, at 42,<br>Germany #39;s golden girl<br>Birgit Fischer won her eighth<br>Olympic gold in the four-woman<br>500-metre kayak race."
6012 ],
6013 [
6014 "England boss Sven Goran<br>Eriksson has defended<br>goalkeeper David James after<br>last night #39;s 2-2 draw in<br>Austria. James allowed Andreas<br>Ivanschitz #39;s shot to slip<br>through his fingers to<br>complete Austria comeback from<br>two goals down."
6015 ],
6016 [
6017 "The quot;future quot; is<br>getting a chance to revive the<br>presently struggling New York<br>Giants. Two other teams also<br>decided it was time for a<br>change at quarterback, but the<br>Buffalo Bills are not one of<br>them."
6018 ],
6019 [
6020 "Flushing Meadows, NY (Sports<br>Network) - The men #39;s<br>semifinals at the 2004 US Open<br>will be staged on Saturday,<br>with three of the tournament<br>#39;s top-five seeds ready for<br>action at the USTA National<br>Tennis Center."
6021 ],
6022 [
6023 "Given nearly a week to examine<br>the security issues raised by<br>the now-infamous brawl between<br>players and fans in Auburn<br>Hills, Mich., Nov. 19, the<br>Celtics returned to the<br>FleetCenter last night with<br>two losses and few concerns<br>about their on-court safety."
6024 ],
6025 [
6026 "Arsenals Thierry Henry today<br>missed out on the European<br>Footballer of the Year award<br>as Andriy Shevchenko took the<br>honour. AC Milan frontman<br>Shevchenko held off<br>competition from Barcelona<br>pair Deco and"
6027 ],
6028 [
6029 "Neil Mellor #39;s sensational<br>late winner for Liverpool<br>against Arsenal on Sunday has<br>earned the back-up striker the<br>chance to salvage a career<br>that had appeared to be<br>drifting irrevocably towards<br>the lower divisions."
6030 ],
6031 [
6032 "ABOUT 70,000 people were<br>forced to evacuate Real Madrid<br>#39;s Santiago Bernabeu<br>stadium minutes before the end<br>of a Primera Liga match<br>yesterday after a bomb threat<br>in the name of ETA Basque<br>separatist guerillas."
6033 ],
6034 [
6035 "The team learned on Monday<br>that full-back Jon Ritchie<br>will miss the rest of the<br>season with a torn anterior<br>cruciate ligament in his left<br>knee."
6036 ],
6037 [
6038 "Venus Williams barely kept<br>alive her hopes of qualifying<br>for next week #39;s WTA Tour<br>Championships. Williams,<br>seeded fifth, survived a<br>third-set tiebreaker to<br>outlast Yuilana Fedak of the<br>Ukraine, 6-4 2-6 7-6"
6039 ],
6040 [
6041 " SYDNEY (Reuters) - Arnold<br>Palmer has taken a swing at<br>America's top players,<br>criticizing their increasing<br>reluctance to travel abroad<br>to play in tournaments."
6042 ],
6043 [
6044 "Although he was well-beaten by<br>Retief Goosen in Sunday #39;s<br>final round of The Tour<br>Championship in Atlanta, there<br>has been some compensation for<br>the former world number one,<br>Tiger Woods."
6045 ],
6046 [
6047 "WAYNE Rooney and Henrik<br>Larsson are among the players<br>nominated for FIFAs<br>prestigious World Player of<br>the Year award. Rooney is one<br>of four Manchester United<br>players on a list which is<br>heavily influenced by the<br>Premiership."
6048 ],
6049 [
6050 "It didn #39;t look good when<br>it happened on the field, and<br>it looked worse in the<br>clubhouse. Angels second<br>baseman Adam Kennedy left the<br>Angels #39; 5-2 win over the<br>Seattle Mariners"
6051 ],
6052 [
6053 "Freshman Darius Walker ran for<br>115 yards and scored two<br>touchdowns, helping revive an<br>Irish offense that had managed<br>just one touchdown in the<br>season's first six quarters."
6054 ],
6055 [
6056 "AP - NBC is adding a 5-second<br>delay to its NASCAR telecasts<br>after Dale Earnhardt Jr. used<br>a vulgarity during a postrace<br>TV interview last weekend."
6057 ],
6058 [
6059 " BOSTON (Sports Network) - The<br>New York Yankees will start<br>Orlando \"El Duque\" Hernandez<br>in Game 4 of the American<br>League Championship Series on<br>Saturday against the Boston<br>Red Sox."
6060 ],
6061 [
6062 "The future of Sven-Goran<br>Eriksson as England coach is<br>the subject of intense<br>discussion after the draw in<br>Austria. Has the Swede lost<br>the confidence of the nation<br>or does he remain the best man<br>for the job?"
6063 ],
6064 [
6065 "Spain begin their third final<br>in five seasons at the Olympic<br>stadium hoping to secure their<br>second title since their first<br>in Barcelona against Australia<br>in 2000."
6066 ],
6067 [
6068 "Second-seeded David Nalbandian<br>of Argentina lost at the Japan<br>Open on Thursday, beaten by<br>Gilles Muller of Luxembourg<br>7-6 (4), 3-6, 6-4 in the third<br>round."
6069 ],
6070 [
6071 "Thursday #39;s unexpected<br>resignation of Memphis<br>Grizzlies coach Hubie Brown<br>left a lot of questions<br>unanswered. In his unique way<br>of putting things, the<br>71-year-old Brown seemed to<br>indicate he was burned out and<br>had some health concerns."
6072 ],
6073 [
6074 "RUDI Voller had quit as coach<br>of Roma after a 3-1 defeat<br>away to Bologna, the Serie A<br>club said today. Under the<br>former Germany coach, Roma had<br>taken just four league points<br>from a possible 12."
6075 ],
6076 [
6077 "ONE by one, the players #39;<br>faces had flashed up on the<br>giant Ibrox screens offering<br>season #39;s greetings to the<br>Rangers fans. But the main<br>presents were reserved for<br>Auxerre."
6078 ],
6079 [
6080 "South Korea #39;s Grace Park<br>shot a seven-under-par 65 to<br>triumph at the CJ Nine Bridges<br>Classic on Sunday. Park #39;s<br>victory made up her final-<br>round collapse at the Samsung<br>World Championship two weeks<br>ago."
6081 ],
6082 [
6083 "Titans QB Steve McNair was<br>released from a Nashville<br>hospital after a two-night<br>stay for treatment of a<br>bruised sternum. McNair was<br>injured during the fourth<br>quarter of the Titans #39;<br>15-12 loss to Jacksonville on<br>Sunday."
6084 ],
6085 [
6086 "Keith Miller, Australia #39;s<br>most prolific all-rounder in<br>Test cricket, died today at a<br>nursing home, Cricket<br>Australia said. He was 84."
6087 ],
6088 [
6089 "TORONTO Former Toronto pitcher<br>John Cerutti (seh-ROO<br>#39;-tee) was found dead in<br>his hotel room today,<br>according to the team. He was<br>44."
6090 ],
6091 [
6092 "Defense: Ken Lucas. His<br>biggest play was his first<br>one. The fourth-year<br>cornerback intercepted a Ken<br>Dorsey pass that kissed off<br>the hands of wide receiver<br>Rashaun Woods and returned it<br>25 yards to set up the<br>Seahawks #39; first score."
6093 ],
6094 [
6095 "The powerful St. Louis trio of<br>Albert Pujols, Scott Rolen and<br>Jim Edmonds is 4 for 23 with<br>one RBI in the series and with<br>runners on base, they are 1<br>for 13."
6096 ],
6097 [
6098 "The Jets signed 33-year-old<br>cornerback Terrell Buckley,<br>who was released by New<br>England on Sunday, after<br>putting nickel back Ray<br>Mickens on season-ending<br>injured reserve yesterday with<br>a torn ACL in his left knee."
6099 ],
6100 [
6101 "WEST INDIES thrilling victory<br>yesterday in the International<br>Cricket Council Champions<br>Trophy meant the world to the<br>five million people of the<br>Caribbean."
6102 ],
6103 [
6104 "Scotland manager Berti Vogts<br>insists he is expecting<br>nothing but victory against<br>Moldova on Wednesday. The game<br>certainly is a must-win affair<br>if the Scots are to have any<br>chance of qualifying for the<br>2006 World Cup finals."
6105 ],
6106 [
6107 " INDIANAPOLIS (Reuters) -<br>Jenny Thompson will take the<br>spotlight from injured U.S.<br>team mate Michael Phelps at<br>the world short course<br>championships Saturday as she<br>brings down the curtain on a<br>spectacular swimming career."
6108 ],
6109 [
6110 "Martin Brodeur made 27 saves,<br>and Brad Richards, Kris Draper<br>and Joe Sakic scored goals to<br>help Canada beat Russia 3-1<br>last night in the World Cup of<br>Hockey, giving the Canadians a<br>3-0 record in round-robin<br>play."
6111 ],
6112 [
6113 "ST. LOUIS -- Mike Martz #39;s<br>week of anger was no empty<br>display. He saw the defending<br>NFC West champions slipping<br>and thought taking potshots at<br>his players might be his best<br>shot at turning things around."
6114 ],
6115 [
6116 "Romanian soccer star Adrian<br>Mutu as he arrives at the<br>British Football Association<br>in London, ahead of his<br>disciplinary hearing, Thursday<br>Nov. 4, 2004."
6117 ],
6118 [
6119 "Australia completed an<br>emphatic Test series sweep<br>over New Zealand with a<br>213-run win Tuesday, prompting<br>a caution from Black Caps<br>skipper Stephen Fleming for<br>other cricket captains around<br>the globe."
6120 ],
6121 [
6122 "Liverpool, England (Sports<br>Network) - Former English<br>international and Liverpool<br>great Emlyn Hughes passed away<br>Tuesday from a brain tumor."
6123 ],
6124 [
6125 "JACKSONVILLE, Fla. -- They<br>were singing in the Colts #39;<br>locker room today, singing<br>like a bunch of wounded<br>songbirds. Never mind that<br>Marcus Pollard, Dallas Clark<br>and Ben Hartsock won #39;t be<br>recording a remake of Kenny<br>Chesney #39;s song,<br>quot;Young, quot; any time<br>soon."
6126 ],
6127 [
6128 "As the close-knit NASCAR<br>community mourns the loss of<br>team owner Rick Hendrick #39;s<br>son, brother, twin nieces and<br>six others in a plane crash<br>Sunday, perhaps no one outside<br>of the immediate family<br>grieves more deeply than<br>Darrell Waltrip."
6129 ],
6130 [
6131 "AP - Purdue quarterback Kyle<br>Orton has no trouble<br>remembering how he felt after<br>last year's game at Michigan."
6132 ],
6133 [
6134 "Brown is a second year player<br>from Memphis and has spent the<br>2004 season on the Steelers<br>#39; practice squad. He played<br>in two games last year."
6135 ],
6136 [
6137 "Barret Jackman, the last of<br>the Blues left to sign before<br>the league #39;s probable<br>lockout on Wednesday,<br>finalized a deal Monday that<br>is rare in the current<br>economic climate but fitting<br>for him."
6138 ],
6139 [
6140 "AP - In the tumult of the<br>visitors' clubhouse at Yankee<br>Stadium, champagne pouring all<br>around him, Theo Epstein held<br>a beer. \"I came in and there<br>was no champagne left,\" he<br>said this week. \"I said, 'I'll<br>have champagne if we win it<br>all.'\" Get ready to pour a<br>glass of bubbly for Epstein.<br>No I.D. necessary."
6141 ],
6142 [
6143 "Barcelona held on from an<br>early Deco goal to edge game<br>local rivals Espanyol 1-0 and<br>carve out a five point<br>tabletop cushion. Earlier,<br>Ronaldo rescued a point for<br>Real Madrid, who continued<br>their middling form with a 1-1<br>draw at Real Betis."
6144 ],
6145 [
6146 "MONTREAL (CP) - The Expos may<br>be history, but their demise<br>has heated up the market for<br>team memorabilia. Vintage<br>1970s and 1980s shirts are<br>already sold out, but<br>everything from caps, beer<br>glasses and key-chains to<br>dolls of mascot Youppi!"
6147 ],
6148 [
6149 "A 76th minute goal from<br>European Footballer of the<br>Year Pavel Nedved gave<br>Juventus a 1-0 win over Bayern<br>Munich on Tuesday handing the<br>Italians clear control at the<br>top of Champions League Group<br>C."
6150 ],
6151 [
6152 "ANN ARBOR, Mich. -- Some NHL<br>players who took part in a<br>charity hockey game at the<br>University of Michigan on<br>Thursday were hopeful the news<br>that the NHL and the players<br>association will resume talks<br>next week"
6153 ],
6154 [
6155 "BOULDER, Colo. -- Vernand<br>Morency ran for 165 yards and<br>two touchdowns and Donovan<br>Woods threw for three more<br>scores, lifting No. 22<br>Oklahoma State to a 42-14<br>victory over Colorado<br>yesterday."
6156 ],
6157 [
6158 "PULLMAN - Last week, in<br>studying USC game film, Cougar<br>coaches thought they found a<br>chink in the national<br>champions armor. And not just<br>any chink - one with the<br>potential, right from the get<br>go, to"
6159 ],
6160 [
6161 "AP - Matt Leinart was quite a<br>baseball prospect growing up,<br>showing so much promise as a<br>left-handed pitcher that<br>scouts took notice before high<br>school."
6162 ],
6163 [
6164 "LSU will stick with a two-<br>quarterback rotation Saturday<br>at Auburn, according to Tigers<br>coach Nick Saban, who seemed<br>to have some fun telling the<br>media what he will and won<br>#39;t discuss Monday."
6165 ],
6166 [
6167 "Seattle -- - Not so long ago,<br>the 49ers were inflicting on<br>other teams the kind of pain<br>and embarrassment they felt in<br>their 34-0 loss to the<br>Seahawks on Sunday."
6168 ],
6169 [
6170 "London - Manchester City held<br>fierce crosstown rivals<br>Manchester United to a 0-0<br>draw on Sunday, keeping the<br>Red Devils eleven points<br>behind leaders Chelsea."
6171 ],
6172 [
6173 "New Ole Miss head coach Ed<br>Orgeron, speaking for the<br>first time since his hiring,<br>made clear the goal of his<br>football program. quot;The<br>goal of this program will be<br>to go to the Sugar Bowl, quot;<br>Orgeron said."
6174 ],
6175 [
6176 "It is much too easy to call<br>Pedro Martinez the selfish<br>one, to say he is walking out<br>on the Red Sox, his baseball<br>family, for the extra year of<br>the Mets #39; crazy money."
6177 ],
6178 [
6179 "It is impossible for young<br>tennis players today to know<br>what it was like to be Althea<br>Gibson and not to be able to<br>quot;walk in the front door,<br>quot; Garrison said."
6180 ],
6181 [
6182 "Here #39;s an obvious word of<br>advice to Florida athletic<br>director Jeremy Foley as he<br>kicks off another search for<br>the Gators football coach: Get<br>Steve Spurrier on board."
6183 ],
6184 [
6185 "Amid the stormy gloom in<br>Gotham, the rain-idled Yankees<br>last night had plenty of time<br>to gather in front of their<br>televisions and watch the Red<br>Sox Express roar toward them.<br>The national telecast might<br>have been enough to send a<br>jittery Boss Steinbrenner<br>searching his Bartlett's<br>Familiar Quotations for some<br>quot;Little Engine That Could<br>quot; metaphor."
6186 ],
6187 [
6188 "FULHAM fans would have been<br>singing the late Elvis #39;<br>hit #39;The wonder of you<br>#39; to their player Elvis<br>Hammond. If not for Frank<br>Lampard spoiling the party,<br>with his dedication to his<br>late grandfather."
6189 ],
6190 [
6191 "A bird #39;s eye view of the<br>circuit at Shanghai shows what<br>an event Sunday #39;s Chinese<br>Grand Prix will be. The course<br>is arguably one of the best<br>there is, and so it should be<br>considering the amount of<br>money that has been spent on<br>it."
6192 ],
6193 [
6194 "AP - Sirius Satellite Radio<br>signed a deal to air the men's<br>NCAA basketball tournament<br>through 2007, the latest move<br>made in an attempt to draw<br>customers through sports<br>programming."
6195 ],
6196 [
6197 "(Sports Network) - The<br>inconsistent San Diego Padres<br>will try for consecutive wins<br>for the first time since<br>August 28-29 tonight, when<br>they begin a huge four-game<br>set against the Los Angeles<br>Dodgers at Dodger Stadium."
6198 ],
6199 [
6200 " NEW YORK (Reuters) - Top seed<br>Roger Federer survived a<br>stirring comeback from twice<br>champion Andre Agassi to reach<br>the semifinals of the U.S.<br>Open for the first time on<br>Thursday, squeezing through<br>6-3, 2-6, 7-5, 3-6, 6-3."
6201 ],
6202 [
6203 "SAN FRANCISCO - What Babe Ruth<br>was to the first half of the<br>20th century and Hank Aaron<br>was to the second, Barry Bonds<br>has become for the home run<br>generation."
6204 ],
6205 [
6206 "Birgit Fischer settled for<br>silver, leaving the 42-year-<br>old Olympian with two medals<br>in two days against decidedly<br>younger competition."
6207 ],
6208 [
6209 "There was no mystery ... no<br>secret strategy ... no baited<br>trap that snapped shut and<br>changed the course of history<br>#39;s most lucrative non-<br>heavyweight fight."
6210 ],
6211 [
6212 "Notre Dame accepted an<br>invitation Sunday to play in<br>the Insight Bowl in Phoenix<br>against a Pac-10 team on Dec.<br>28. The Irish (6-5) accepted<br>the bid a day after losing to<br>Southern California"
6213 ],
6214 [
6215 "Greg Anderson has so dominated<br>Pro Stock this season that his<br>championship quest has evolved<br>into a pursuit of NHRA<br>history. By Bob Hesser, Racers<br>Edge Photography."
6216 ],
6217 [
6218 "Michael Powell, chairman of<br>the FCC, said Wednesday he was<br>disappointed with ABC for<br>airing a sexually suggestive<br>opening to \"Monday Night<br>Football.\""
6219 ],
6220 [
6221 "Former Washington football<br>coach Rick Neuheisel looked<br>forward to a return to<br>coaching Wednesday after being<br>cleared by the NCAA of<br>wrongdoing related to his<br>gambling on basketball games."
6222 ],
6223 [
6224 "AP - Rutgers basketball player<br>Shalicia Hurns was suspended<br>from the team after pleading<br>guilty to punching and tying<br>up her roommate during a<br>dispute over painkilling<br>drugs."
6225 ],
6226 [
6227 "This was the event Michael<br>Phelps didn't really need to<br>compete in if his goal was to<br>win eight golds. He probably<br>would have had a better chance<br>somewhere else."
6228 ],
6229 [
6230 "Gabe Kapler became the first<br>player to leave the World<br>Series champion Boston Red<br>Sox, agreeing to a one-year<br>contract with the Yomiuri<br>Giants in Tokyo."
6231 ],
6232 [
6233 "BALI, Indonesia - Svetlana<br>Kuznetsova, fresh off her<br>championship at the US Open,<br>defeated Australian qualifier<br>Samantha Stosur 6-4, 6-4<br>Thursday to reach the<br>quarterfinals of the Wismilak<br>International."
6234 ],
6235 [
6236 "AP - Just like the old days in<br>Dallas, Emmitt Smith made life<br>miserable for the New York<br>Giants on Sunday."
6237 ],
6238 [
6239 "TAMPA, Fla. - Chris Simms<br>first NFL start lasted 19<br>plays, and it might be a while<br>before he plays again for the<br>Tampa Bay Buccaneers."
6240 ],
6241 [
6242 "Jarno Trulli made the most of<br>the conditions in qualifying<br>to claim pole ahead of Michael<br>Schumacher, while Fernando<br>finished third."
6243 ],
6244 [
6245 "AP - Authorities are<br>investigating whether bettors<br>at New York's top thoroughbred<br>tracks were properly informed<br>when jockeys came in<br>overweight at races, a source<br>familiar with the probe told<br>The Associated Press."
6246 ],
6247 [
6248 "Michael Owen scored his first<br>goal for Real Madrid in a 1-0<br>home victory over Dynamo Kiev<br>in the Champions League. The<br>England striker toe-poked home<br>Ronaldo #39;s cross in the<br>35th minute to join the<br>Russians"
6249 ],
6250 [
6251 "Jason Giambi has returned to<br>the New York Yankees'<br>clubhouse but is still<br>clueless as to when he will be<br>able to play again."
6252 ],
6253 [
6254 "Seventy-five National Hockey<br>League players met with union<br>leaders yesterday to get an<br>update on a lockout that shows<br>no sign of ending."
6255 ],
6256 [
6257 "Howard, at 6-4 overall and 3-3<br>in the Mid-Eastern Athletic<br>Conference, can clinch a<br>winning record in the MEAC<br>with a win over Delaware State<br>on Saturday."
6258 ],
6259 [
6260 " ATHENS (Reuters) - Top-ranked<br>Argentina booked their berth<br>in the women's hockey semi-<br>finals at the Athens Olympics<br>on Friday but defending<br>champions Australia now face<br>an obstacle course to qualify<br>for the medal matches."
6261 ],
6262 [
6263 "The Notre Dame message boards<br>are no longer discussing<br>whether Tyrone Willingham<br>should be fired. Theyre<br>already arguing about whether<br>the next coach should be Barry<br>Alvarez or Steve Spurrier."
6264 ],
6265 [
6266 " THOMASTOWN, Ireland (Reuters)<br>- World number three Ernie<br>Els overcame difficult weather<br>conditions to fire a sparkling<br>eight-under-par 64 and move<br>two shots clear after two<br>rounds of the WGC-American<br>Express Championship Friday."
6267 ],
6268 [
6269 "Lamar Odom supplemented 20<br>points with 13 rebounds and<br>Kobe Bryant added 19 points to<br>overcome a big night from Yao<br>Ming as the Los Angeles Lakers<br>ground out an 84-79 win over<br>the Rockets in Houston<br>Saturday."
6270 ],
6271 [
6272 "It rained Sunday, of course,<br>and but another soppy, sloppy<br>gray day at Westside Tennis<br>Club did nothing to deter<br>Roger Federer from his<br>appointed rounds."
6273 ],
6274 [
6275 "Amelie Mauresmo was handed a<br>place in the Advanta<br>Championships final after<br>Maria Sharapova withdrew from<br>their semi-final because of<br>injury."
6276 ],
6277 [
6278 " EAST RUTHERFORD, New Jersey<br>(Sports Network) - Retired NBA<br>center and seven-time All-<br>Star Alonzo Mourning is going<br>to give his playing career<br>one more shot."
6279 ],
6280 [
6281 "Jordan have confirmed that<br>Timo Glock will replace<br>Giorgio Pantano for this<br>weekend #39;s Chinese GP as<br>the team has terminated its<br>contract with Pantano."
6282 ],
6283 [
6284 "The continuing heartache of<br>Wake Forest #39;s ACC football<br>season was best described by<br>fifth-ranked Florida State<br>coach Bobby Bowden, after his<br>Seminoles had edged the<br>Deacons 20-17 Saturday at<br>Groves Stadium."
6285 ],
6286 [
6287 "THE glory days have returned<br>to White Hart Lane. When Spurs<br>new first-team coach Martin<br>Jol promised a return to the<br>traditions of the 1960s,<br>nobody could have believed he<br>was so determined to act so<br>quickly and so literally."
6288 ],
6289 [
6290 "AP - When Paula Radcliffe<br>dropped out of the Olympic<br>marathon miles from the<br>finish, she sobbed<br>uncontrollably. Margaret Okayo<br>knew the feeling. Okayo pulled<br>out of the marathon at the<br>15th mile with a left leg<br>injury, and she cried, too.<br>When she watched Radcliffe<br>quit, Okayo thought, \"Let's<br>cry together.\""
6291 ],
6292 [
6293 " ATLANTA (Sports Network) -<br>The Atlanta Hawks signed free<br>agent Kevin Willis on<br>Wednesday, nearly a decade<br>after the veteran big man<br>ended an 11- year stint with<br>the team."
6294 ],
6295 [
6296 "When his right-front tire went<br>flying off early in the Ford<br>400, the final race of the<br>NASCAR Nextel Cup Series<br>season, Kurt Busch, it seemed,<br>was destined to spend his<br>offseason"
6297 ],
6298 [
6299 "Brandon Backe and Woody<br>Williams pitched well last<br>night even though neither<br>earned a win. But their<br>outings will show up in the<br>record books."
6300 ],
6301 [
6302 "The Football Association today<br>decided not to charge David<br>Beckham with bringing the game<br>into disrepute. The FA made<br>the surprise announcement<br>after their compliance unit<br>ruled"
6303 ],
6304 [
6305 " CRANS-SUR-SIERRE, Switzerland<br>(Reuters) - World number<br>three Ernie Els says he feels<br>a failure after narrowly<br>missing out on three of the<br>year's four major<br>championships."
6306 ],
6307 [
6308 "Striker Bonaventure Kalou<br>netted twice to send AJ<br>Auxerre through to the first<br>knockout round of the UEFA Cup<br>at the expense of Rangers on<br>Wednesday."
6309 ],
6310 [
6311 "THIS weekend sees the<br>quot;other quot; showdown<br>between New York and New<br>England as the Jets and<br>Patriots clash in a battle of<br>the unbeaten teams."
6312 ],
6313 [
6314 "Nicolas Anelka is fit for<br>Manchester City #39;s<br>Premiership encounter against<br>Tottenham at Eastlands, but<br>the 13million striker will<br>have to be content with a<br>place on the bench."
6315 ],
6316 [
6317 " PITTSBURGH (Reuters) - Ben<br>Roethlisberger passed for 183<br>yards and two touchdowns,<br>Hines Ward scored twice and<br>the Pittsburgh Steelers<br>rolled to a convincing 27-3<br>victory over Philadelphia on<br>Sunday for their second<br>straight win against an<br>undefeated opponent."
6318 ],
6319 [
6320 " ATHENS (Reuters) - The U.S.<br>men's basketball team got<br>their first comfortable win<br>at the Olympic basketball<br>tournament Monday, routing<br>winless Angola 89-53 in their<br>final preliminary round game."
6321 ],
6322 [
6323 "Often, the older a pitcher<br>becomes, the less effective he<br>is on the mound. Roger Clemens<br>apparently didn #39;t get that<br>memo. On Tuesday, the 42-year-<br>old Clemens won an<br>unprecedented"
6324 ],
6325 [
6326 "PSV Eindhoven faces Arsenal at<br>Highbury tomorrow night on the<br>back of a free-scoring start<br>to the season. Despite losing<br>Mateja Kezman to Chelsea in<br>the summer, the Dutch side has<br>scored 12 goals in the first"
6327 ],
6328 [
6329 "PLAYER OF THE GAME: Playing<br>with a broken nose, Seattle<br>point guard Sue Bird set a<br>WNBA playoff record for<br>assists with 14, also pumping<br>in 10 points as the Storm<br>claimed the Western Conference<br>title last night."
6330 ],
6331 [
6332 "Frankfurt - World Cup winners<br>Brazil were on Monday drawn to<br>meet European champions<br>Greece, Gold Cup winners<br>Mexico and Asian champions<br>Japan at the 2005<br>Confederations Cup."
6333 ],
6334 [
6335 "Third baseman Vinny Castilla<br>said he fits fine with the<br>Colorado youth movement, even<br>though he #39;ll turn 38 next<br>season and the Rockies are<br>coming off the second-worst"
6336 ],
6337 [
6338 "(Sports Network) - Two of the<br>top teams in the American<br>League tangle in a possible<br>American League Division<br>Series preview tonight, as the<br>West-leading Oakland Athletics<br>host the wild card-leading<br>Boston Red Sox for the first<br>of a three-game set at the"
6339 ],
6340 [
6341 "Inverness Caledonian Thistle<br>appointed Craig Brewster as<br>its new manager-player<br>Thursday although he #39;s<br>unable to play for the team<br>until January."
6342 ],
6343 [
6344 "ATHENS, Greece -- Alan Shearer<br>converted an 87th-minute<br>penalty to give Newcastle a<br>1-0 win over Panionios in<br>their UEFA Cup Group D match."
6345 ],
6346 [
6347 "Derek Jeter turned a season<br>that started with a terrible<br>slump into one of the best in<br>his accomplished 10-year<br>career. quot;I don #39;t<br>think there is any question,<br>quot; the New York Yankees<br>manager said."
6348 ],
6349 [
6350 "China's Guo Jingjing easily<br>won the women's 3-meter<br>springboard last night, and Wu<br>Minxia made it a 1-2 finish<br>for the world's diving<br>superpower, taking the silver."
6351 ],
6352 [
6353 "GREEN BAY, Wisconsin (Ticker)<br>-- Brett Favre will be hoping<br>his 200th consecutive start<br>turns out better than his last<br>two have against the St."
6354 ],
6355 [
6356 "When an NFL team opens with a<br>prolonged winning streak,<br>former Miami Dolphins coach<br>Don Shula and his players from<br>the 17-0 team of 1972 root<br>unabashedly for the next<br>opponent."
6357 ],
6358 [
6359 "MIANNE Bagger, the transsexual<br>golfer who prompted a change<br>in the rules to allow her to<br>compete on the professional<br>circuit, made history<br>yesterday by qualifying to<br>play full-time on the Ladies<br>European Tour."
6360 ],
6361 [
6362 "Great Britain #39;s gold medal<br>tally now stands at five after<br>Leslie Law was handed the<br>individual three day eventing<br>title - in a courtroom."
6363 ],
6364 [
6365 "Mayor Tom Menino must be<br>proud. His Boston Red Sox just<br>won their first World Series<br>in 86 years and his Hyde Park<br>Blue Stars yesterday clinched<br>their first Super Bowl berth<br>in 32 years, defeating<br>O'Bryant, 14-0. Who would have<br>thought?"
6366 ],
6367 [
6368 "South Korea have appealed to<br>sport #39;s supreme legal body<br>in an attempt to award Yang<br>Tae-young the Olympic<br>gymnastics all-round gold<br>medal after a scoring error<br>robbed him of the title in<br>Athens."
6369 ],
6370 [
6371 "AP - Johan Santana had an<br>early lead and was well on his<br>way to his 10th straight win<br>when the rain started to fall."
6372 ],
6373 [
6374 "ATHENS-In one of the biggest<br>shocks in Olympic judo<br>history, defending champion<br>Kosei Inoue was defeated by<br>Dutchman Elco van der Geest in<br>the men #39;s 100-kilogram<br>category Thursday."
6375 ],
6376 [
6377 "NBC is adding a 5-second delay<br>to its Nascar telecasts after<br>Dale Earnhardt Jr. used a<br>vulgarity during a postrace<br>interview last weekend."
6378 ],
6379 [
6380 "San Francisco Giants<br>outfielder Barry Bonds, who<br>became the third player in<br>Major League Baseball history<br>to hit 700 career home runs,<br>won the National League Most<br>Valuable Player Award"
6381 ],
6382 [
6383 "Portsmouth chairman Milan<br>Mandaric said on Tuesday that<br>Harry Redknapp, who resigned<br>as manager last week, was<br>innocent of any wrong-doing<br>over agent or transfer fees."
6384 ],
6385 [
6386 "This record is for all the<br>little guys, for all the<br>players who have to leg out<br>every hit instead of taking a<br>relaxing trot around the<br>bases, for all the batters<br>whose muscles aren #39;t"
6387 ],
6388 [
6389 "Charlie Hodgson #39;s record-<br>equalling performance against<br>South Africa was praised by<br>coach Andy Robinson after the<br>Sale flyhalf scored 27 points<br>in England #39;s 32-16 victory<br>here at Twickenham on<br>Saturday."
6390 ],
6391 [
6392 "BASEBALL Atlanta (NL):<br>Optioned P Roman Colon to<br>Greenville (Southern);<br>recalled OF Dewayne Wise from<br>Richmond (IL). Boston (AL):<br>Purchased C Sandy Martinez<br>from Cleveland (AL) and<br>assigned him to Pawtucket<br>(IL). Cleveland (AL): Recalled<br>OF Ryan Ludwick from Buffalo<br>(IL). Chicago (NL): Acquired<br>OF Ben Grieve from Milwaukee<br>(NL) for player to be named<br>and cash; acquired C Mike ..."
6393 ],
6394 [
6395 "BRONX, New York (Ticker) --<br>Kelvim Escobar was the latest<br>Anaheim Angels #39; pitcher to<br>subdue the New York Yankees.<br>Escobar pitched seven strong<br>innings and Bengie Molina tied<br>a career-high with four hits,<br>including"
6396 ],
6397 [
6398 "Sep 08 - Vijay Singh revelled<br>in his status as the new world<br>number one after winning the<br>Deutsche Bank Championship by<br>three shots in Boston on<br>Monday."
6399 ],
6400 [
6401 "Many people in golf are asking<br>that today. He certainly wasn<br>#39;t A-list and he wasn #39;t<br>Larry Nelson either. But you<br>couldn #39;t find a more solid<br>guy to lead the United States<br>into Ireland for the 2006<br>Ryder Cup Matches."
6402 ],
6403 [
6404 "Australian Stuart Appleby, who<br>was the joint second-round<br>leader, returned a two-over 74<br>to drop to third at three-<br>under while American Chris<br>DiMarco moved into fourth with<br>a round of 69."
6405 ],
6406 [
6407 "With a doubleheader sweep of<br>the Minnesota Twins, the New<br>York Yankees moved to the<br>verge of clinching their<br>seventh straight AL East<br>title."
6408 ],
6409 [
6410 "Athens, Greece (Sports<br>Network) - The first official<br>track event took place this<br>morning and Italy #39;s Ivano<br>Brugnetti won the men #39;s<br>20km walk at the Summer<br>Olympics in Athens."
6411 ],
6412 [
6413 "Champions Arsenal opened a<br>five-point lead at the top of<br>the Premier League after a 4-0<br>thrashing of Charlton Athletic<br>at Highbury Saturday."
6414 ],
6415 [
6416 "The Redskins and Browns have<br>traded field goals and are<br>tied, 3-3, in the first<br>quarter in Cleveland."
6417 ],
6418 [
6419 "Forget September call-ups. The<br>Red Sox may tap their minor<br>league system for an extra<br>player or two when the rules<br>allow them to expand their<br>25-man roster Wednesday, but<br>any help from the farm is<br>likely to pale against the<br>abundance of talent they gain<br>from the return of numerous<br>players, including Trot Nixon<br>, from the disabled list."
6420 ],
6421 [
6422 "THOUSAND OAKS -- Anonymity is<br>only a problem if you want it<br>to be, and it is obvious Vijay<br>Singh doesn #39;t want it to<br>be. Let others chase fame."
6423 ],
6424 [
6425 "David Coulthard #39;s season-<br>long search for a Formula One<br>drive next year is almost<br>over. Negotiations between Red<br>Bull Racing and Coulthard, who<br>tested for the Austrian team<br>for the first time"
6426 ],
6427 [
6428 "AP - Southern California<br>tailback LenDale White<br>remembers Justin Holland from<br>high school. The Colorado<br>State quarterback made quite<br>an impression."
6429 ],
6430 [
6431 "TIM HENMAN last night admitted<br>all of his energy has been<br>drained away as he bowed out<br>of the Madrid Masters. The top<br>seed, who had a blood test on<br>Wednesday to get to the bottom<br>of his fatigue, went down"
6432 ],
6433 [
6434 "ATHENS -- US sailors needed a<br>big day to bring home gold and<br>bronze medals from the sailing<br>finale here yesterday. But<br>rolling the dice on windshifts<br>and starting tactics backfired<br>both in Star and Tornado<br>classes, and the Americans had<br>to settle for a single silver<br>medal."
6435 ],
6436 [
6437 "AP - Cavaliers forward Luke<br>Jackson was activated<br>Wednesday after missing five<br>games because of tendinitis in<br>his right knee. Cleveland also<br>placed forward Sasha Pavlovic<br>on the injured list."
6438 ],
6439 [
6440 "The Brisbane Lions #39;<br>football manager stepped out<br>of the changerooms just before<br>six o #39;clock last night and<br>handed one of the milling<br>supporters a six-pack of beer."
6441 ],
6442 [
6443 "Cavaliers owner Gordon Gund is<br>in quot;serious quot;<br>negotiations to sell the NBA<br>franchise, which has enjoyed a<br>dramatic financial turnaround<br>since the arrival of star<br>LeBron James."
6444 ],
6445 [
6446 "After two days of gloom, China<br>was back on the winning rails<br>on Thursday with Liu Chunhong<br>winning a weightlifting title<br>on her record-shattering binge<br>and its shuttlers contributing<br>two golds in the cliff-hanging<br>finals."
6447 ],
6448 [
6449 "One question that arises<br>whenever a player is linked to<br>steroids is, \"What would he<br>have done without them?\"<br>Baseball history whispers an<br>answer."
6450 ],
6451 [
6452 "The second round of the<br>Canadian Open golf tournament<br>continues Saturday Glenn Abbey<br>Golf Club in Oakville,<br>Ontario, after play was<br>suspended late Friday due to<br>darkness."
6453 ],
6454 [
6455 "A massive plan to attract the<br>2012 Summer Olympics to New<br>York, touting the city's<br>diversity, financial and media<br>power, was revealed Wednesday."
6456 ],
6457 [
6458 "NICK Heidfeld #39;s test with<br>Williams has been brought<br>forward after BAR blocked<br>plans for Anthony Davidson to<br>drive its Formula One rival<br>#39;s car."
6459 ],
6460 [
6461 "Grace Park closed with an<br>eagle and two birdies for a<br>7-under-par 65 and a two-<br>stroke lead after three rounds<br>of the Wachovia LPGA Classic<br>on Saturday."
6462 ],
6463 [
6464 "Carlos Beltran drives in five<br>runs to carry the Astros to a<br>12-3 rout of the Braves in<br>Game 5 of their first-round NL<br>playoff series."
6465 ],
6466 [
6467 "Since Lennox Lewis #39;s<br>retirement, the heavyweight<br>division has been knocked for<br>having more quantity than<br>quality. Eight heavyweights on<br>Saturday night #39;s card at<br>Madison Square Garden hope to<br>change that perception, at<br>least for one night."
6468 ],
6469 [
6470 "Tim Duncan had 17 points and<br>10 rebounds, helping the San<br>Antonio Spurs to a 99-81<br>victory over the New York<br>Kicks. This was the Spurs<br>fourth straight win this<br>season."
6471 ],
6472 [
6473 "Nagpur: India suffered a<br>double blow even before the<br>first ball was bowled in the<br>crucial third cricket Test<br>against Australia on Tuesday<br>when captain Sourav Ganguly<br>and off spinner Harbhajan<br>Singh were ruled out of the<br>match."
6474 ],
6475 [
6476 "AP - Former New York Yankees<br>hitting coach Rick Down was<br>hired for the same job by the<br>Mets on Friday, reuniting him<br>with new manager Willie<br>Randolph."
6477 ],
6478 [
6479 "FILDERSTADT (Germany) - Amelie<br>Mauresmo and Lindsay Davenport<br>took their battle for the No.<br>1 ranking and Porsche Grand<br>Prix title into the semi-<br>finals with straight-sets<br>victories on Friday."
6480 ],
6481 [
6482 "Carter returned, but it was<br>running back Curtis Martin and<br>the offensive line that put<br>the Jets ahead. Martin rushed<br>for all but 10 yards of a<br>45-yard drive that stalled at<br>the Cardinals 10."
6483 ],
6484 [
6485 "DENVER (Ticker) -- Jake<br>Plummer more than made up for<br>a lack of a running game.<br>Plummer passed for 294 yards<br>and two touchdowns as the<br>Denver Broncos posted a 23-13<br>victory over the San Diego<br>Chargers in a battle of AFC<br>West Division rivals."
6486 ],
6487 [
6488 "It took all of about five<br>minutes of an introductory<br>press conference Wednesday at<br>Heritage Hall for USC<br>basketball to gain something<br>it never really had before."
6489 ],
6490 [
6491 "AP - The Boston Red Sox looked<br>at the out-of-town scoreboard<br>and could hardly believe what<br>they saw. The New York Yankees<br>were trailing big at home<br>against the Cleveland Indians<br>in what would be the worst<br>loss in the 101-year history<br>of the storied franchise."
6492 ],
6493 [
6494 "The Red Sox will either<br>complete an amazing comeback<br>as the first team to rebound<br>from a 3-0 deficit in<br>postseason history, or the<br>Yankees will stop them."
6495 ],
6496 [
6497 "The Red Sox have reached<br>agreement with free agent<br>pitcher Matt Clement yesterday<br>on a three-year deal that will<br>pay him around \\$25 million,<br>his agent confirmed yesterday."
6498 ],
6499 [
6500 "HEN Manny Ramirez and David<br>Ortiz hit consecutive home<br>runs Sunday night in Chicago<br>to put the Red Sox ahead,<br>there was dancing in the<br>streets in Boston."
6501 ],
6502 [
6503 "MIAMI -- Bryan Randall grabbed<br>a set of Mardi Gras beads and<br>waved them aloft, while his<br>teammates exalted in the<br>prospect of a trip to New<br>Orleans."
6504 ],
6505 [
6506 "TORONTO (CP) - With an injured<br>Vince Carter on the bench, the<br>Toronto Raptors dropped their<br>sixth straight game Friday,<br>101-87 to the Denver Nuggets."
6507 ],
6508 [
6509 "While not quite a return to<br>glory, Monday represents the<br>Redskins' return to the<br>national consciousness."
6510 ],
6511 [
6512 "Vijay Singh has won the US PGA<br>Tour player of the year award<br>for the first time, ending<br>Tiger Woods #39;s five-year<br>hold on the honour."
6513 ],
6514 [
6515 "England got strikes from<br>sparkling debut starter<br>Jermain Defoe and Michael Owen<br>to defeat Poland in a Uefa<br>World Cup qualifier in<br>Chorzow."
6516 ],
6517 [
6518 "Titleholder Ernie Els moved<br>within sight of a record sixth<br>World Match Play title on<br>Saturday by solving a putting<br>problem to overcome injured<br>Irishman Padraig Harrington 5<br>and 4."
6519 ],
6520 [
6521 "If the Washington Nationals<br>never win a pennant, they have<br>no reason to ever doubt that<br>DC loves them. Yesterday, the<br>District City Council<br>tentatively approved a tab for<br>a publicly financed ballpark<br>that could amount to as much<br>as \\$630 million."
6522 ],
6523 [
6524 "Defensive back Brandon<br>Johnson, who had two<br>interceptions for Tennessee at<br>Mississippi, was suspended<br>indefinitely Monday for<br>violation of team rules."
6525 ],
6526 [
6527 "Points leader Kurt Busch spun<br>out and ran out of fuel, and<br>his misfortune was one of the<br>reasons crew chief Jimmy<br>Fennig elected not to pit with<br>20 laps to go."
6528 ],
6529 [
6530 "(CP) - The NHL all-star game<br>hasn #39;t been cancelled<br>after all. It #39;s just been<br>moved to Russia. The agent for<br>New York Rangers winger<br>Jaromir Jagr confirmed Monday<br>that the Czech star had joined<br>Omsk Avangard"
6531 ],
6532 [
6533 "HERE in the land of myth, that<br>familiar god of sports --<br>karma -- threw a bolt of<br>lightning into the Olympic<br>stadium yesterday. Marion<br>Jones lunged desperately with<br>her baton in the 4 x 100m<br>relay final, but couldn #39;t<br>reach her target."
6534 ],
6535 [
6536 "AP - Kenny Rogers lost at the<br>Coliseum for the first time in<br>more than 10 years, with Bobby<br>Crosby's three-run double in<br>the fifth inning leading the<br>Athletics to a 5-4 win over<br>the Texas Rangers on Thursday."
6537 ],
6538 [
6539 "Dambulla, Sri Lanka - Kumar<br>Sangakkara and Avishka<br>Gunawardene slammed impressive<br>half-centuries to help an<br>under-strength Sri Lanka crush<br>South Africa by seven wickets<br>in the fourth one-day<br>international here on<br>Saturday."
6540 ],
6541 [
6542 "Fresh off being the worst team<br>in baseball, the Arizona<br>Diamondbacks set a new record<br>this week: fastest team to<br>both hire and fire a manager."
6543 ],
6544 [
6545 "Nebraska head coach Bill<br>Callahan runs off the field at<br>halftime of the game against<br>Baylor in Lincoln, Neb.,<br>Saturday, Oct. 16, 2004."
6546 ],
6547 [
6548 " EAST RUTHERFORD, N.J. (Sports<br>Network) - The Toronto<br>Raptors have traded All-Star<br>swingman Vince Carter to the<br>New Jersey Nets in exchange<br>for center Alonzo Mourning,<br>forward Eric Williams,<br>center/forward Aaron Williams<br>and two first- round draft<br>picks."
6549 ],
6550 [
6551 "What riot? quot;An Argentine<br>friend of mine was a little<br>derisive of the Pacers-Pistons<br>eruption, quot; says reader<br>Mike Gaynes. quot;He snorted,<br>#39;Is that what Americans<br>call a riot?"
6552 ],
6553 [
6554 "All season, Chris Barnicle<br>seemed prepared for just about<br>everything, but the Newton<br>North senior was not ready for<br>the hot weather he encountered<br>yesterday in San Diego at the<br>Footlocker Cross-Country<br>National Championships. Racing<br>in humid conditions with<br>temperatures in the 70s, the<br>Massachusetts Division 1 state<br>champion finished sixth in 15<br>minutes 34 seconds in the<br>5-kilometer race. ..."
6555 ],
6556 [
6557 "AP - Coach Tyrone Willingham<br>was fired by Notre Dame on<br>Tuesday after three seasons in<br>which he failed to return one<br>of the nation's most storied<br>football programs to<br>prominence."
6558 ],
6559 [
6560 "COLLEGE PARK, Md. -- Joel<br>Statham completed 18 of 25<br>passes for 268 yards and two<br>touchdowns in No. 23<br>Maryland's 45-22 victory over<br>Temple last night, the<br>Terrapins' 12th straight win<br>at Byrd Stadium."
6561 ],
6562 [
6563 "Manchester United boss Sir<br>Alex Ferguson wants the FA to<br>punish Arsenal good guy Dennis<br>Bergkamp for taking a swing at<br>Alan Smith last Sunday."
6564 ],
6565 [
6566 "Published reports say Barry<br>Bonds has testified that he<br>used a clear substance and a<br>cream given to him by a<br>trainer who was indicted in a<br>steroid-distribution ring."
6567 ],
6568 [
6569 " ATHENS (Reuters) - Christos<br>Angourakis added his name to<br>Greece's list of Paralympic<br>medal winners when he claimed<br>a bronze in the T53 shot put<br>competition Thursday."
6570 ],
6571 [
6572 "Jay Fiedler threw for one<br>touchdown, Sage Rosenfels<br>threw for another and the<br>Miami Dolphins got a victory<br>in a game they did not want to<br>play, beating the New Orleans<br>Saints 20-19 Friday night."
6573 ],
6574 [
6575 " NEW YORK (Reuters) - Terrell<br>Owens scored three touchdowns<br>and the Philadelphia Eagles<br>amassed 35 first-half points<br>on the way to a 49-21<br>drubbing of the Dallas Cowboys<br>in Irving, Texas, Monday."
6576 ],
6577 [
6578 "A late strike by Salomon Kalou<br>sealed a 2-1 win for Feyenoord<br>over NEC Nijmegen, while<br>second placed AZ Alkmaar<br>defeated ADO Den Haag 2-0 in<br>the Dutch first division on<br>Sunday."
6579 ],
6580 [
6581 "What a disgrace Ron Artest has<br>become. And the worst part is,<br>the Indiana Pacers guard just<br>doesn #39;t get it. Four days<br>after fueling one of the<br>biggest brawls in the history<br>of pro sports, Artest was on<br>national"
6582 ],
6583 [
6584 "Jenson Button has revealed<br>dissatisfaction with the way<br>his management handled a<br>fouled switch to Williams. Not<br>only did the move not come<br>off, his reputation may have<br>been irreparably damaged amid<br>news headline"
6585 ],
6586 [
6587 "Redknapp and his No2 Jim Smith<br>resigned from Portsmouth<br>yesterday, leaving<br>controversial new director<br>Velimir Zajec in temporary<br>control."
6588 ],
6589 [
6590 "As the season winds down for<br>the Frederick Keys, Manager<br>Tom Lawless is starting to<br>enjoy the progress his<br>pitching staff has made this<br>season."
6591 ],
6592 [
6593 "Britain #39;s Bradley Wiggins<br>won the gold medal in men<br>#39;s individual pursuit<br>Saturday, finishing the<br>4,000-meter final in 4:16."
6594 ],
6595 [
6596 "And when David Akers #39;<br>50-yard field goal cleared the<br>crossbar in overtime, they did<br>just that. They escaped a<br>raucous Cleveland Browns<br>Stadium relieved but not<br>broken, tested but not<br>cracked."
6597 ],
6598 [
6599 "San Antonio, TX (Sports<br>Network) - Dean Wilson shot a<br>five-under 65 on Friday to<br>move into the lead at the<br>halfway point of the Texas<br>Open."
6600 ],
6601 [
6602 "Now that Chelsea have added<br>Newcastle United to the list<br>of clubs that they have given<br>what for lately, what price<br>Jose Mourinho covering the<br>Russian-funded aristocrats of<br>west London in glittering<br>glory to the tune of four<br>trophies?"
6603 ],
6604 [
6605 "AP - Former Seattle Seahawks<br>running back Chris Warren has<br>been arrested in Virginia on a<br>federal warrant, accused of<br>failing to pay #36;137,147 in<br>child support for his two<br>daughters in Washington state."
6606 ],
6607 [
6608 "It #39;s official: US Open had<br>never gone into the third<br>round with only two American<br>men, including the defending<br>champion, Andy Roddick."
6609 ],
6610 [
6611 "WASHINGTON, Aug. 17<br>(Xinhuanet) -- England coach<br>Sven-Goran Eriksson has urged<br>the international soccer<br>authorities to preserve the<br>health of the world superstar<br>footballers for major<br>tournaments, who expressed his<br>will in Slaley of England on<br>Tuesday ..."
6612 ],
6613 [
6614 "Juventus coach Fabio Capello<br>has ordered his players not to<br>kick the ball out of play when<br>an opponent falls to the<br>ground apparently hurt because<br>he believes some players fake<br>injury to stop the match."
6615 ],
6616 [
6617 "You #39;re angry. You want to<br>lash out. The Red Sox are<br>doing it to you again. They<br>#39;re blowing a playoff<br>series, and to the Yankees no<br>less."
6618 ],
6619 [
6620 "TORONTO -- There is no<br>mystique to it anymore,<br>because after all, the<br>Russians have become commoners<br>in today's National Hockey<br>League, and Finns, Czechs,<br>Slovaks, and Swedes also have<br>been entrenched in the<br>Original 30 long enough to<br>turn the ongoing World Cup of<br>Hockey into a protracted<br>trailer for the NHL season."
6621 ],
6622 [
6623 "Indianapolis, IN (Sports<br>Network) - The Indiana Pacers<br>try to win their second<br>straight game tonight, as they<br>host Kevin Garnett and the<br>Minnesota Timberwolves in the<br>third of a four-game homestand<br>at Conseco Fieldhouse."
6624 ],
6625 [
6626 "It is a team game, this Ryder<br>Cup stuff that will commence<br>Friday at Oakland Hills<br>Country Club. So what are the<br>teams? For the Americans,<br>captain Hal Sutton isn't<br>saying."
6627 ],
6628 [
6629 "MANCHESTER United today<br>dramatically rejected the<br>advances of Malcolm Glazer,<br>the US sports boss who is<br>mulling an 825m bid for the<br>football club."
6630 ],
6631 [
6632 "As usual, the Big Ten coaches<br>were out in full force at<br>today #39;s Big Ten<br>Teleconference. Both OSU head<br>coach Jim Tressel and Iowa<br>head coach Kirk Ferentz<br>offered some thoughts on the<br>upcoming game between OSU"
6633 ],
6634 [
6635 "New York Knicks #39; Stephon<br>Marbury (3) fires over New<br>Orleans Hornets #39; Dan<br>Dickau (2) during the second<br>half in New Orleans Wednesday<br>night, Dec. 8, 2004."
6636 ],
6637 [
6638 "At the very moment when the<br>Red Sox desperately need<br>someone slightly larger than<br>life to rally around, they<br>suddenly have the man for the<br>job: Thrilling Schilling."
6639 ],
6640 [
6641 "Dale Earnhardt Jr, right,<br>talks with Matt Kenseth, left,<br>during a break in practice at<br>Lowe #39;s Motor Speedway in<br>Concord, NC, Thursday Oct. 14,<br>2004 before qualifying for<br>Saturday #39;s UAW-GM Quality<br>500 NASCAR Nextel Cup race."
6642 ],
6643 [
6644 "Several starting spots may<br>have been usurped or at least<br>threatened after relatively<br>solid understudy showings<br>Sunday, but few players<br>welcome the kind of shot<br>delivered to Oakland"
6645 ],
6646 [
6647 "TEMPE, Ariz. -- Neil Rackers<br>kicked four field goals and<br>the Arizona Cardinals stifled<br>rookie Chris Simms and the<br>rest of the Tampa Bay offense<br>for a 12-7 victory yesterday<br>in a matchup of two sputtering<br>teams out of playoff<br>contention. Coach Jon Gruden's<br>team lost its fourth in a row<br>to finish 5-11, Tampa Bay's<br>worst record since going ..."
6648 ],
6649 [
6650 "ATHENS France, Britain and the<br>United States issued a joint<br>challenge Thursday to Germany<br>#39;s gold medal in equestrian<br>team three-day eventing."
6651 ],
6652 [
6653 "ATLANTA - Who could have<br>imagined Tommy Tuberville in<br>this position? Yet there he<br>was Friday, standing alongside<br>the SEC championship trophy,<br>posing for pictures and<br>undoubtedly chuckling a bit on<br>the inside."
6654 ],
6655 [
6656 "John Thomson threw shutout<br>ball for seven innings<br>Wednesday night in carrying<br>Atlanta to a 2-0 blanking of<br>the New York Mets. New York<br>lost for the 21st time in 25<br>games on the"
6657 ],
6658 [
6659 "Vikram Solanki beat the rain<br>clouds to register his second<br>one-day international century<br>as England won the third one-<br>day international to wrap up a<br>series victory."
6660 ],
6661 [
6662 "A three-touchdown point spread<br>and a recent history of late-<br>season collapses had many<br>thinking the UCLA football<br>team would provide little<br>opposition to rival USC #39;s<br>march to the BCS-championship<br>game at the Orange Bowl."
6663 ],
6664 [
6665 " PHOENIX (Sports Network) -<br>Free agent third baseman Troy<br>Glaus is reportedly headed to<br>the Arizona Diamondbacks."
6666 ],
6667 [
6668 "Third-string tailback Chris<br>Markey ran for 131 yards to<br>lead UCLA to a 34-26 victory<br>over Oregon on Saturday.<br>Markey, playing because of an<br>injury to starter Maurice<br>Drew, also caught five passes<br>for 84 yards"
6669 ],
6670 [
6671 "Jay Payton #39;s three-run<br>homer led the San Diego Padres<br>to a 5-1 win over the San<br>Francisco Giants in National<br>League play Saturday, despite<br>a 701st career blast from<br>Barry Bonds."
6672 ],
6673 [
6674 "The optimists among Rutgers<br>fans were delighted, but the<br>Scarlet Knights still gave the<br>pessimists something to worry<br>about."
6675 ],
6676 [
6677 "Perhaps the sight of Maria<br>Sharapova opposite her tonight<br>will jog Serena Williams #39;<br>memory. Wimbledon. The final.<br>You and Maria."
6678 ],
6679 [
6680 "Five days after making the<br>putt that won the Ryder Cup,<br>Colin Montgomerie looked set<br>to miss the cut at a European<br>PGA tour event."
6681 ],
6682 [
6683 "Karachi - Captain Inzamam ul-<br>Haq and coach Bob Woolmer came<br>under fire on Thursday for<br>choosing to bat first on a<br>tricky pitch after Pakistan<br>#39;s humiliating defeat in<br>the ICC Champions Trophy semi-<br>final."
6684 ],
6685 [
6686 "Scottish champions Celtic saw<br>their three-year unbeaten home<br>record in Europe broken<br>Tuesday as they lost 3-1 to<br>Barcelona in the Champions<br>League Group F opener."
6687 ],
6688 [
6689 "AP - Andy Roddick searched out<br>Carlos Moya in the throng of<br>jumping, screaming Spanish<br>tennis players, hoping to<br>shake hands."
6690 ],
6691 [
6692 "ENGLAND captain and Real<br>Madrid midfielder David<br>Beckham has played down<br>speculation that his club are<br>moving for England manager<br>Sven-Goran Eriksson."
6693 ],
6694 [
6695 "AFP - National Basketball<br>Association players trying to<br>win a fourth consecutive<br>Olympic gold medal for the<br>United States have gotten the<br>wake-up call that the \"Dream<br>Team\" days are done even if<br>supporters have not."
6696 ],
6697 [
6698 "England will be seeking their<br>third clean sweep of the<br>summer when the NatWest<br>Challenge against India<br>concludes at Lord #39;s. After<br>beating New Zealand and West<br>Indies 3-0 and 4-0 in Tests,<br>they have come alive"
6699 ],
6700 [
6701 "AP - Mark Richt knows he'll<br>have to get a little creative<br>when he divvies up playing<br>time for Georgia's running<br>backs next season. Not so on<br>Saturday. Thomas Brown is the<br>undisputed starter for the<br>biggest game of the season."
6702 ],
6703 [
6704 "Michael Phelps, the six-time<br>Olympic champion, issued an<br>apology yesterday after being<br>arrested and charged with<br>drunken driving in the United<br>States."
6705 ],
6706 [
6707 "ATHENS Larry Brown, the US<br>coach, leaned back against the<br>scorer #39;s table, searching<br>for support on a sinking ship.<br>His best player, Tim Duncan,<br>had just fouled out, and the<br>options for an American team<br>that"
6708 ],
6709 [
6710 "Spain have named an unchanged<br>team for the Davis Cup final<br>against the United States in<br>Seville on 3-5 December.<br>Carlos Moya, Juan Carlos<br>Ferrero, Rafael Nadal and<br>Tommy Robredo will take on the<br>US in front of 22,000 fans at<br>the converted Olympic stadium."
6711 ],
6712 [
6713 "Last Tuesday night, Harvard<br>knocked off rival Boston<br>College, which was ranked No.<br>1 in the country. Last night,<br>the Crimson knocked off<br>another local foe, Boston<br>University, 2-1, at Walter<br>Brown Arena, which marked the<br>first time since 1999 that<br>Harvard had beaten them both<br>in the same season."
6714 ],
6715 [
6716 "About 500 prospective jurors<br>will be in an Eagle, Colorado,<br>courtroom Friday, answering an<br>82-item questionnaire in<br>preparation for the Kobe<br>Bryant sexual assault trial."
6717 ],
6718 [
6719 "BEIJING The NBA has reached<br>booming, basketball-crazy<br>China _ but the league doesn<br>#39;t expect to make any money<br>soon. The NBA flew more than<br>100 people halfway around the<br>world for its first games in<br>China, featuring"
6720 ],
6721 [
6722 " NEW YORK (Reuters) - Curt<br>Schilling pitched 6 2/3<br>innings and Manny Ramirez hit<br>a three-run homer in a seven-<br>run fourth frame to lead the<br>Boston Red Sox to a 9-3 win<br>over the host Anaheim Angels<br>in their American League<br>Divisional Series opener<br>Tuesday."
6723 ],
6724 [
6725 "AP - The game between the<br>Minnesota Twins and the New<br>York Yankees on Tuesday night<br>was postponed by rain."
6726 ],
6727 [
6728 "PARIS The verdict is in: The<br>world #39;s greatest race car<br>driver, the champion of<br>champions - all disciplines<br>combined - is Heikki<br>Kovalainen."
6729 ],
6730 [
6731 "Pakistan won the toss and<br>unsurprisingly chose to bowl<br>first as they and West Indies<br>did battle at the Rose Bowl<br>today for a place in the ICC<br>Champions Trophy final against<br>hosts England."
6732 ],
6733 [
6734 "AP - Boston Red Sox center<br>fielder Johnny Damon is having<br>a recurrence of migraine<br>headaches that first bothered<br>him after a collision in last<br>year's playoffs."
6735 ],
6736 [
6737 "Felix Cardenas of Colombia won<br>the 17th stage of the Spanish<br>Vuelta cycling race Wednesday,<br>while defending champion<br>Roberto Heras held onto the<br>overall leader #39;s jersey<br>for the sixth day in a row."
6738 ],
6739 [
6740 "Established star Landon<br>Donovan and rising sensation<br>Eddie Johnson carried the<br>United States into the<br>regional qualifying finals for<br>the 2006 World Cup in emphatic<br>fashion Wednesday night."
6741 ],
6742 [
6743 "Wizards coach Eddie Jordan<br>says the team is making a<br>statement that immaturity will<br>not be tolerated by suspending<br>Kwame Brown one game for not<br>taking part in a team huddle<br>during a loss to Denver."
6744 ],
6745 [
6746 "AP - Andy Roddick has yet to<br>face a challenge in his U.S.<br>Open title defense. He beat<br>No. 18 Tommy Robredo of Spain<br>6-3, 6-2, 6-4 Tuesday night to<br>move into the quarterfinals<br>without having lost a set."
6747 ],
6748 [
6749 "Now that hell froze over in<br>Boston, New England braces for<br>its rarest season -- a winter<br>of content. Red Sox fans are<br>adrift from the familiar<br>torture of the past."
6750 ],
6751 [
6752 "THE South Africans have called<br>the Wallabies scrum cheats as<br>a fresh round of verbal<br>warfare opened in the Republic<br>last night."
6753 ],
6754 [
6755 "An overwhelming majority of<br>NHL players who expressed<br>their opinion in a poll said<br>they would not support a<br>salary cap even if it meant<br>saving a season that was<br>supposed to have started Oct.<br>13."
6756 ],
6757 [
6758 "Tony Eury Sr. oversees Dale<br>Earnhardt Jr. on the<br>racetrack, but Sunday he<br>extended his domain to Victory<br>Lane. Earnhardt was unbuckling<br>to crawl out of the No."
6759 ],
6760 [
6761 "(Sports Network) - The New<br>York Yankees try to move one<br>step closer to a division<br>title when they conclude their<br>critical series with the<br>Boston Red Sox at Fenway Park."
6762 ],
6763 [
6764 "Kurt Busch claimed a stake in<br>the points lead in the NASCAR<br>Chase for the Nextel Cup<br>yesterday, winning the<br>Sylvania 300 at New Hampshire<br>International Speedway."
6765 ],
6766 [
6767 "LOUDON, NH - As this<br>newfangled stretch drive for<br>the Nextel Cup championship<br>ensues, Jeff Gordon has to be<br>considered the favorite for a<br>fifth title."
6768 ],
6769 [
6770 "By nick giongco. YOU KNOW you<br>have reached the status of a<br>boxing star when ring<br>announcer extraordinaire<br>Michael Buffer calls out your<br>name in his trademark booming<br>voice during a high-profile<br>event like yesterday"
6771 ],
6772 [
6773 "AP - Even with a big lead,<br>Eric Gagne wanted to pitch in<br>front of his hometown fans one<br>last time."
6774 ],
6775 [
6776 "ATHENS, Greece -- Larry Brown<br>was despondent, the head of<br>the US selection committee was<br>defensive and an irritated<br>Allen Iverson was hanging up<br>on callers who asked what went<br>wrong."
6777 ],
6778 [
6779 "AP - Courtney Brown refuses to<br>surrender to injuries. He's<br>already planning another<br>comeback."
6780 ],
6781 [
6782 "It took an off-the-cuff<br>reference to a serial<br>murderer/cannibal to punctuate<br>the Robby Gordon storyline.<br>Gordon has been vilified by<br>his peers and put on probation"
6783 ],
6784 [
6785 "By BOBBY ROSS JR. Associated<br>Press Writer. play the Atlanta<br>Hawks. They will be treated to<br>free food and drink and have.<br>their pictures taken with<br>Mavericks players, dancers and<br>team officials."
6786 ],
6787 [
6788 "ARSENAL #39;S Brazilian World<br>Cup winning midfielder<br>Gilberto Silva is set to be<br>out for at least a month with<br>a back injury, the Premiership<br>leaders said."
6789 ],
6790 [
6791 "INDIANAPOLIS -- With a package<br>of academic reforms in place,<br>the NCAA #39;s next crusade<br>will address what its<br>president calls a dangerous<br>drift toward professionalism<br>and sports entertainment."
6792 ],
6793 [
6794 "AP - It was difficult for<br>Southern California's Pete<br>Carroll and Oklahoma's Bob<br>Stoops to keep from repeating<br>each other when the two<br>coaches met Thursday."
6795 ],
6796 [
6797 "Andy Roddick, along with<br>Olympic silver medalist Mardy<br>Fish and the doubles pair of<br>twins Bob and Mike Bryan will<br>make up the US team to compete<br>with Belarus in the Davis Cup,<br>reported CRIENGLISH."
6798 ],
6799 [
6800 "While the world #39;s best<br>athletes fight the noble<br>Olympic battle in stadiums and<br>pools, their fans storm the<br>streets of Athens, turning the<br>Greek capital into a huge<br>international party every<br>night."
6801 ],
6802 [
6803 "EVERTON showed they would not<br>be bullied into selling Wayne<br>Rooney last night by rejecting<br>a 23.5million bid from<br>Newcastle - as Manchester<br>United gamble on Goodison<br>#39;s resolve to keep the<br>striker."
6804 ],
6805 [
6806 "After months of legal<br>wrangling, the case of<br>&lt;em&gt;People v. Kobe Bean<br>Bryant&lt;/em&gt; commences on<br>Friday in Eagle, Colo., with<br>testimony set to begin next<br>month."
6807 ],
6808 [
6809 "Lyon coach Paul le Guen has<br>admitted his side would be<br>happy with a draw at Old<br>Trafford on Tuesday night. The<br>three-times French champions<br>have assured themselves of<br>qualification for the<br>Champions League"
6810 ],
6811 [
6812 "Reuters - Barry Bonds failed<br>to collect a hit in\\his bid to<br>join the 700-homer club, but<br>he did score a run to\\help the<br>San Francisco Giants edge the<br>host Milwaukee Brewers\\3-2 in<br>National League action on<br>Tuesday."
6813 ],
6814 [
6815 "After waiting an entire summer<br>for the snow to fall and<br>Beaver Creek to finally open,<br>skiers from around the planet<br>are coming to check out the<br>Birds of Prey World Cup action<br>Dec. 1 - 5. Although everyones"
6816 ],
6817 [
6818 "I confess that I am a complete<br>ignoramus when it comes to<br>women #39;s beach volleyball.<br>In fact, I know only one thing<br>about the sport - that it is<br>the supreme aesthetic<br>experience available on planet<br>Earth."
6819 ],
6820 [
6821 "Manchester United Plc may<br>offer US billionaire Malcolm<br>Glazer a seat on its board if<br>he agrees to drop a takeover<br>bid for a year, the Observer<br>said, citing an unidentified<br>person in the soccer industry."
6822 ],
6823 [
6824 "For a guy who spent most of<br>his first four professional<br>seasons on the disabled list,<br>Houston Astros reliever Brad<br>Lidge has developed into quite<br>the ironman these past two<br>days."
6825 ],
6826 [
6827 "Former Bengal Corey Dillon<br>found his stride Sunday in his<br>second game for the New<br>England Patriots. Dillon<br>gained 158 yards on 32 carries<br>as the Patriots beat the<br>Arizona Cardinals, 23-12, for<br>their 17th victory in a row."
6828 ],
6829 [
6830 "If legend is to be believed,<br>the end of a victorious war<br>was behind Pheidippides #39;<br>trek from Marathon to Athens<br>2,500 years ago."
6831 ],
6832 [
6833 " BEIJING (Reuters) - Wimbledon<br>champion Maria Sharapova<br>demolished fellow Russian<br>Tatiana Panova 6-1, 6-1 to<br>advance to the quarter-finals<br>of the China Open on<br>Wednesday."
6834 ],
6835 [
6836 "Padres general manager Kevin<br>Towers called Expos general<br>manager Omar Minaya on<br>Thursday afternoon and told<br>him he needed a shortstop<br>because Khalil Greene had<br>broken his"
6837 ],
6838 [
6839 "Motorsport.com. Nine of the<br>ten Formula One teams have<br>united to propose cost-cutting<br>measures for the future, with<br>the notable exception of<br>Ferrari."
6840 ],
6841 [
6842 "Steve Francis and Shaquille O<br>#39;Neal enjoyed big debuts<br>with their new teams. Kobe<br>Bryant found out he can #39;t<br>carry the Lakers all by<br>himself."
6843 ],
6844 [
6845 "Australia, by winning the<br>third Test at Nagpur on<br>Friday, also won the four-<br>match series 2-0 with one<br>match to go. Australia had<br>last won a Test series in<br>India way back in December<br>1969 when Bill Lawry #39;s<br>team beat Nawab Pataudi #39;s<br>Indian team 3-1."
6846 ],
6847 [
6848 "Final Score: Connecticut 61,<br>New York 51 New York, NY<br>(Sports Network) - Nykesha<br>Sales scored 15 points to lead<br>Connecticut to a 61-51 win<br>over New York in Game 1 of<br>their best-of-three Eastern<br>Conference Finals series at<br>Madison Square Garden."
6849 ],
6850 [
6851 "Charlotte, NC -- LeBron James<br>poured in a game-high 19<br>points and Jeff McInnis scored<br>18 as the Cleveland Cavaliers<br>routed the Charlotte Bobcats,<br>106-89, at the Charlotte<br>Coliseum."
6852 ],
6853 [
6854 "Lehmann, who was at fault in<br>two matches in the tournament<br>last season, was blundering<br>again with the German set to<br>take the rap for both Greek<br>goals."
6855 ],
6856 [
6857 "Jeju Island, South Korea<br>(Sports Network) - Grace Park<br>and Carin Koch posted matching<br>rounds of six-under-par 66 on<br>Friday to share the lead after<br>the first round of the CJ Nine<br>Bridges Classic."
6858 ],
6859 [
6860 "Benfica and Real Madrid set<br>the standard for soccer<br>success in Europe in the late<br>1950s and early #39;60s. The<br>clubs have evolved much<br>differently, but both have<br>struggled"
6861 ],
6862 [
6863 "Pakistan are closing in fast<br>on Sri Lanka #39;s first<br>innings total after impressing<br>with both ball and bat on the<br>second day of the opening Test<br>in Faisalabad."
6864 ],
6865 [
6866 "Ron Artest has been hit with a<br>season long suspension,<br>unprecedented for the NBA<br>outside doping cases; Stephen<br>Jackson banned for 30 games;<br>Jermaine O #39;Neal for 25<br>games and Anthony Johnson for<br>five."
6867 ],
6868 [
6869 "Three shots behind Grace Park<br>with five holes to go, six-<br>time LPGA player of the year<br>Sorenstam rallied with an<br>eagle, birdie and three pars<br>to win her fourth Samsung<br>World Championship by three<br>shots over Park on Sunday."
6870 ],
6871 [
6872 "NSW Rugby CEO Fraser Neill<br>believes Waratah star Mat<br>Rogers has learned his lesson<br>after he was fined and ordered<br>to do community service<br>following his controversial<br>comments about the club rugby<br>competition."
6873 ],
6874 [
6875 "ATHENS: China, the dominant<br>force in world diving for the<br>best part of 20 years, won six<br>out of eight Olympic titles in<br>Athens and prompted<br>speculation about a clean<br>sweep when they stage the<br>Games in Beijing in 2008."
6876 ],
6877 [
6878 "The Houston Astros won their<br>19th straight game at home and<br>are one game from winning<br>their first playoff series in<br>42 years."
6879 ],
6880 [
6881 "The eighth-seeded American<br>fell to sixth-seeded Elena<br>Dementieva of Russia, 0-6 6-2<br>7-6 (7-5), on Friday - despite<br>being up a break on four<br>occasions in the third set."
6882 ],
6883 [
6884 "TUCSON, Arizona (Ticker) --<br>No. 20 Arizona State tries to<br>post its first three-game<br>winning streak over Pac-10<br>Conference rival Arizona in 26<br>years when they meet Friday."
6885 ],
6886 [
6887 "AP - Phillip Fulmer kept his<br>cool when starting center<br>Jason Respert drove off in the<br>coach's golf cart at practice."
6888 ],
6889 [
6890 "GOALS from Wayne Rooney and<br>Ruud van Nistelrooy gave<br>Manchester United the win at<br>Newcastle. Alan Shearer<br>briefly levelled matters for<br>the Magpies but United managed<br>to scrape through."
6891 ],
6892 [
6893 "AP - Two-time U.S. Open<br>doubles champion Max Mirnyi<br>will lead the Belarus team<br>that faces the United States<br>in the Davis Cup semifinals in<br>Charleston later this month."
6894 ],
6895 [
6896 "AP - New York Jets safety Erik<br>Coleman got his souvenir<br>football from the equipment<br>manager and held it tightly."
6897 ],
6898 [
6899 "Ivan Hlinka coached the Czech<br>Republic to the hockey gold<br>medal at the 1998 Nagano<br>Olympics and became the coach<br>of the Pittsburgh Penguins two<br>years later."
6900 ],
6901 [
6902 "AUBURN - Ah, easy street. No<br>game this week. Light<br>practices. And now Auburn is<br>being touted as the No. 3 team<br>in the Bowl Championship<br>Series standings."
6903 ],
6904 [
6905 "Portsmouth #39;s Harry<br>Redknapp has been named as the<br>Barclays manager of the month<br>for October. Redknapp #39;s<br>side were unbeaten during the<br>month and maintained an<br>impressive climb to ninth in<br>the Premiership."
6906 ],
6907 [
6908 "Three directors of Manchester<br>United have been ousted from<br>the board after US tycoon<br>Malcolm Glazer, who is<br>attempting to buy the club,<br>voted against their re-<br>election."
6909 ],
6910 [
6911 "AP - Manny Ramirez singled and<br>scored before leaving with a<br>bruised knee, and the<br>streaking Boston Red Sox beat<br>the Detroit Tigers 5-3 Friday<br>night for their 10th victory<br>in 11 games."
6912 ],
6913 [
6914 "The news comes fast and<br>furious. Pedro Martinez goes<br>to Tampa to visit George<br>Steinbrenner. Theo Epstein and<br>John Henry go to Florida for<br>their turn with Pedro. Carl<br>Pavano comes to Boston to<br>visit Curt Schilling. Jason<br>Varitek says he's not a goner.<br>Derek Lowe is a goner, but he<br>says he wishes it could be<br>different. Orlando Cabrera ..."
6915 ],
6916 [
6917 "FRED Hale Sr, documented as<br>the worlds oldest man, has<br>died at the age of 113. Hale<br>died in his sleep on Friday at<br>a hospital in Syracuse, New<br>York, while trying to recover<br>from a bout of pneumonia, his<br>grandson, Fred Hale III said."
6918 ],
6919 [
6920 "The Oakland Raiders have<br>traded Jerry Rice to the<br>Seattle Seahawks in a move<br>expected to grant the most<br>prolific receiver in National<br>Football League history his<br>wish to get more playing time."
6921 ],
6922 [
6923 "AP - Florida coach Ron Zook<br>was fired Monday but will be<br>allowed to finish the season,<br>athletic director Jeremy Foley<br>told The Gainesville Sun."
6924 ],
6925 [
6926 "Troy Brown has had to make a<br>lot of adjustments while<br>playing both sides of the<br>football. quot;You always<br>want to score when you get the<br>ball -- offense or defense"
6927 ],
6928 [
6929 "Jenson Button will tomorrow<br>discover whether he is allowed<br>to quit BAR and move to<br>Williams for 2005. The<br>Englishman has signed<br>contracts with both teams but<br>prefers a switch to Williams,<br>where he began his Formula One<br>career in 2000."
6930 ],
6931 [
6932 "ARSENAL boss Arsene Wenger<br>last night suffered a<br>Champions League setback as<br>Brazilian midfielder Gilberto<br>Silva (above) was left facing<br>a long-term injury absence."
6933 ],
6934 [
6935 "American improves to 3-1 on<br>the season with a hard-fought<br>overtime win, 74-63, against<br>Loyala at Bender Arena on<br>Friday night."
6936 ],
6937 [
6938 "Bee Staff Writers. SAN<br>FRANCISCO - As Eric Johnson<br>drove to the stadium Sunday<br>morning, his bruised ribs were<br>so sore, he wasn #39;t sure he<br>#39;d be able to suit up for<br>the game."
6939 ],
6940 [
6941 "The New England Patriots are<br>so single-minded in pursuing<br>their third Super Bowl triumph<br>in four years that they almost<br>have no room for any other<br>history."
6942 ],
6943 [
6944 "Because, while the Eagles are<br>certain to stumble at some<br>point during the regular<br>season, it seems inconceivable<br>that they will falter against<br>a team with as many offensive<br>problems as Baltimore has<br>right now."
6945 ],
6946 [
6947 "AP - J.J. Arrington ran for 84<br>of his 121 yards in the second<br>half and Aaron Rodgers shook<br>off a slow start to throw two<br>touchdown passes to help No. 5<br>California beat Washington<br>42-12 on Saturday."
6948 ],
6949 [
6950 "SHANGHAI, China The Houston<br>Rockets have arrived in<br>Shanghai with hometown<br>favorite Yao Ming declaring<br>himself quot;here on<br>business."
6951 ],
6952 [
6953 "Charleston, SC (Sports<br>Network) - Andy Roddick and<br>Mardy Fish will play singles<br>for the United States in this<br>weekend #39;s Davis Cup<br>semifinal matchup against<br>Belarus."
6954 ],
6955 [
6956 "RICKY PONTING believes the<br>game #39;s watchers have<br>fallen for the quot;myth<br>quot; that New Zealand know<br>how to rattle Australia."
6957 ],
6958 [
6959 "MILWAUKEE (SportsTicker) -<br>Barry Bonds tries to go where<br>just two players have gone<br>before when the San Francisco<br>Giants visit the Milwaukee<br>Brewers on Tuesday."
6960 ],
6961 [
6962 "AP - With Tom Brady as their<br>quarterback and a stingy,<br>opportunistic defense, it's<br>difficult to imagine when the<br>New England Patriots might<br>lose again. Brady and<br>defensive end Richard Seymour<br>combined to secure the<br>Patriots' record-tying 18th<br>straight victory, 31-17 over<br>the Buffalo Bills on Sunday."
6963 ],
6964 [
6965 "Approaching Hurricane Ivan has<br>led to postponement of the<br>game Thursday night between<br>10th-ranked California and<br>Southern Mississippi in<br>Hattiesburg, Cal #39;s<br>athletic director said Monday."
6966 ],
6967 [
6968 "SAN DIEGO (Ticker) - The San<br>Diego Padres lacked speed and<br>an experienced bench last<br>season, things veteran<br>infielder Eric Young is<br>capable of providing."
6969 ],
6970 [
6971 "This is an eye chart,<br>reprinted as a public service<br>to the New York Mets so they<br>may see from what they suffer:<br>myopia. Has ever a baseball<br>franchise been so shortsighted<br>for so long?"
6972 ],
6973 [
6974 " LONDON (Reuters) - A medical<br>product used to treat both<br>male hair loss and prostate<br>problems has been added to the<br>list of banned drugs for<br>athletes."
6975 ],
6976 [
6977 "AP - Curtis Martin and Jerome<br>Bettis have the opportunity to<br>go over 13,000 career yards<br>rushing in the same game when<br>Bettis and the Pittsburgh<br>Steelers play Martin and the<br>New York Jets in a big AFC<br>matchup Sunday."
6978 ],
6979 [
6980 "Michigan Stadium was mostly<br>filled with empty seats. The<br>only cheers were coming from<br>near one end zone -he Iowa<br>section. By Carlos Osorio, AP."
6981 ],
6982 [
6983 "The International Rugby Board<br>today confirmed that three<br>countries have expressed an<br>interest in hosting the 2011<br>World Cup. New Zealand, South<br>Africa and Japan are leading<br>the race to host rugby union<br>#39;s global spectacular in<br>seven years #39; time."
6984 ],
6985 [
6986 "MIAMI (Ticker) -- In its first<br>season in the Atlantic Coast<br>Conference, No. 11 Virginia<br>Tech is headed to the BCS.<br>Bryan Randall threw two<br>touchdown passes and the<br>Virginia Tech defense came up<br>big all day as the Hokies<br>knocked off No."
6987 ],
6988 [
6989 "(CP) - Somehow, in the span of<br>half an hour, the Detroit<br>Tigers #39; pitching went from<br>brutal to brilliant. Shortly<br>after being on the wrong end<br>of several records in a 26-5<br>thrashing from to the Kansas<br>City"
6990 ],
6991 [
6992 "With the Huskies reeling at<br>0-4 - the only member of a<br>Bowl Championship Series<br>conference left without a win<br>-an Jose State suddenly looms<br>as the only team left on the<br>schedule that UW will be<br>favored to beat."
6993 ],
6994 [
6995 "Darryl Sutter, who coached the<br>Calgary Flames to the Stanley<br>Cup finals last season, had an<br>emergency appendectomy and was<br>recovering Friday."
6996 ],
6997 [
6998 "Athens, Greece (Sports<br>Network) - For the second<br>straight day a Briton captured<br>gold at the Olympic Velodrome.<br>Bradley Wiggins won the men<br>#39;s individual 4,000-meter<br>pursuit Saturday, one day<br>after teammate"
6999 ],
7000 [
7001 "A Steffen Iversen penalty was<br>sufficient to secure the<br>points for Norway at Hampden<br>on Saturday. James McFadden<br>was ordered off after 53<br>minutes for deliberate<br>handball as he punched Claus<br>Lundekvam #39;s header off the<br>line."
7002 ],
7003 [
7004 "AP - Ailing St. Louis reliever<br>Steve Kline was unavailable<br>for Game 3 of the NL<br>championship series on<br>Saturday, but Cardinals<br>manager Tony LaRussa hopes the<br>left-hander will pitch later<br>this postseason."
7005 ],
7006 [
7007 "MADRID: A stunning first-half<br>free kick from David Beckham<br>gave Real Madrid a 1-0 win<br>over newly promoted Numancia<br>at the Bernabeu last night."
7008 ],
7009 [
7010 "Favourites Argentina beat<br>Italy 3-0 this morning to<br>claim their place in the final<br>of the men #39;s Olympic<br>football tournament. Goals by<br>leading goalscorer Carlos<br>Tevez, with a smart volley<br>after 16 minutes, and"
7011 ],
7012 [
7013 "Shortly after Steve Spurrier<br>arrived at Florida in 1990,<br>the Gators were placed on NCAA<br>probation for a year stemming<br>from a child-support payment<br>former coach Galen Hall made<br>for a player."
7014 ]
7015 ],
7016 "hovertemplate": "label=Sports<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
7017 "legendgroup": "Sports",
7018 "marker": {
7019 "color": "#00cc96",
7020 "size": 5,
7021 "symbol": "square"
7022 },
7023 "mode": "markers",
7024 "name": "Sports",
7025 "showlegend": true,
7026 "type": "scattergl",
7027 "x": [
7028 16.660423,
7029 49.959976,
7030 54.445854,
7031 30.389194,
7032 13.9476,
7033 47.226242,
7034 51.068775,
7035 50.124294,
7036 44.945942,
7037 46.406788,
7038 48.53827,
7039 31.687206,
7040 40.537342,
7041 63.37852,
7042 56.515934,
7043 45.10189,
7044 48.401085,
7045 36.802402,
7046 54.15107,
7047 58.71805,
7048 38.756367,
7049 59.531124,
7050 47.890396,
7051 36.084118,
7052 39.42093,
7053 55.4732,
7054 60.896523,
7055 56.4989,
7056 48.16754,
7057 47.840588,
7058 60.467564,
7059 31.210938,
7060 49.345882,
7061 58.657722,
7062 37.406326,
7063 45.95487,
7064 27.38124,
7065 46.569256,
7066 40.19783,
7067 -38.585472,
7068 48.277,
7069 48.961315,
7070 46.0185,
7071 59.281708,
7072 58.10119,
7073 41.329796,
7074 60.929493,
7075 49.080627,
7076 52.442997,
7077 25.193996,
7078 13.627039,
7079 49.169395,
7080 50.209198,
7081 38.928047,
7082 57.835648,
7083 25.167212,
7084 54.942364,
7085 31.13371,
7086 45.565693,
7087 56.076347,
7088 47.481384,
7089 54.362545,
7090 53.08307,
7091 55.395947,
7092 32.21779,
7093 36.722115,
7094 58.705086,
7095 30.618706,
7096 23.218187,
7097 48.1655,
7098 39.944633,
7099 51.72719,
7100 57.632236,
7101 18.106745,
7102 40.575005,
7103 49.25058,
7104 52.102192,
7105 45.8365,
7106 41.15665,
7107 45.06367,
7108 50.470036,
7109 55.406406,
7110 34.643066,
7111 44.60481,
7112 40.65631,
7113 49.13915,
7114 29.803865,
7115 25.779589,
7116 56.531708,
7117 37.571487,
7118 65.59185,
7119 38.63354,
7120 46.481388,
7121 46.68557,
7122 49.08016,
7123 14.032702,
7124 23.928396,
7125 -6.620774,
7126 45.88543,
7127 35.342182,
7128 47.523766,
7129 47.32294,
7130 34.786186,
7131 43.796356,
7132 49.697426,
7133 37.340225,
7134 54.74676,
7135 41.444393,
7136 30.604837,
7137 60.995483,
7138 66.21081,
7139 35.24333,
7140 57.111607,
7141 48.019886,
7142 52.86177,
7143 52.435543,
7144 51.07264,
7145 61.549442,
7146 42.282997,
7147 33.828228,
7148 56.65421,
7149 43.26525,
7150 62.865932,
7151 39.05222,
7152 41.410755,
7153 38.42368,
7154 56.985188,
7155 57.739395,
7156 50.66318,
7157 48.850945,
7158 36.300686,
7159 39.32889,
7160 31.211935,
7161 39.84183,
7162 40.939545,
7163 48.37629,
7164 25.452175,
7165 51.559708,
7166 46.41191,
7167 52.77315,
7168 55.190277,
7169 38.03023,
7170 59.759964,
7171 48.908253,
7172 49.40172,
7173 49.71215,
7174 40.702366,
7175 57.916637,
7176 51.67792,
7177 30.202019,
7178 57.654526,
7179 34.585587,
7180 61.278408,
7181 23.422081,
7182 39.786133,
7183 54.46313,
7184 48.63991,
7185 35.595135,
7186 50.553566,
7187 54.101334,
7188 51.79524,
7189 42.513103,
7190 39.504147,
7191 20.738512,
7192 47.29459,
7193 51.208797,
7194 61.06654,
7195 59.059566,
7196 41.391323,
7197 56.262905,
7198 46.51155,
7199 27.989025,
7200 57.75085,
7201 35.379726,
7202 40.129883,
7203 51.36741,
7204 44.124233,
7205 38.459312,
7206 42.09723,
7207 54.85633,
7208 48.645084,
7209 33.95719,
7210 34.440483,
7211 45.367435,
7212 57.216434,
7213 49.150986,
7214 40.020714,
7215 36.398586,
7216 49.763367,
7217 44.87128,
7218 34.063007,
7219 29.130596,
7220 40.65309,
7221 33.885105,
7222 42.74865,
7223 46.39128,
7224 63.1983,
7225 49.79338,
7226 54.410885,
7227 63.605362,
7228 39.934895,
7229 17.519335,
7230 40.63617,
7231 30.811249,
7232 47.465935,
7233 47.272655,
7234 63.177612,
7235 41.66488,
7236 51.543095,
7237 38.820065,
7238 40.088383,
7239 60.45724,
7240 52.433907,
7241 38.667847,
7242 57.766346,
7243 42.41823,
7244 19.677572,
7245 -36.831997,
7246 56.381645,
7247 53.579098,
7248 59.620773,
7249 48.37667,
7250 35.445507,
7251 46.157833,
7252 49.838924,
7253 29.182852,
7254 38.542347,
7255 30.625587,
7256 43.841885,
7257 56.74711,
7258 51.738125,
7259 51.774147,
7260 43.796253,
7261 47.406204,
7262 -6.8207917,
7263 41.08887,
7264 62.321815,
7265 30.915781,
7266 49.839912,
7267 48.11404,
7268 37.93922,
7269 58.07306,
7270 50.09836,
7271 54.922394,
7272 52.352432,
7273 53.529724,
7274 25.636118,
7275 38.338932,
7276 37.103165,
7277 45.54423,
7278 53.86991,
7279 47.012283,
7280 60.093002,
7281 32.56739,
7282 60.606064,
7283 39.772743,
7284 48.95457,
7285 44.68764,
7286 48.906673,
7287 47.63983,
7288 62.788,
7289 38.030407,
7290 56.60054,
7291 40.073948,
7292 60.232296,
7293 56.806816,
7294 45.64992,
7295 39.266872,
7296 62.91453,
7297 50.306213,
7298 53.805332,
7299 50.443317,
7300 53.03957,
7301 44.309578,
7302 54.42772,
7303 34.023724,
7304 61.473892,
7305 50.651646,
7306 27.97626,
7307 59.39454,
7308 32.39917,
7309 59.94177,
7310 42.23158,
7311 56.222717,
7312 59.36177,
7313 57.550297,
7314 60.801098,
7315 57.966537,
7316 55.964886,
7317 45.870426,
7318 38.638237,
7319 49.729176,
7320 58.080826,
7321 58.289707,
7322 25.88273,
7323 63.36231,
7324 50.890648,
7325 45.88053,
7326 50.78542,
7327 43.456127,
7328 28.731657,
7329 50.339493,
7330 61.357586,
7331 56.755314,
7332 13.779188,
7333 25.783823,
7334 55.462612,
7335 58.314003,
7336 53.49091,
7337 49.449314,
7338 37.930157,
7339 57.86416,
7340 52.26376,
7341 47.072803,
7342 48.17513,
7343 44.906193,
7344 56.61765,
7345 56.60834,
7346 56.066643,
7347 56.162464,
7348 53.77512,
7349 47.758217,
7350 50.96032,
7351 58.05466,
7352 41.446438,
7353 58.41072,
7354 11.970405,
7355 35.8429,
7356 47.047108,
7357 54.494556,
7358 47.79968,
7359 59.32574,
7360 40.920834,
7361 55.53207,
7362 44.559975,
7363 53.77833,
7364 32.079,
7365 47.351242,
7366 38.30059,
7367 48.4094,
7368 33.499294,
7369 29.347134,
7370 45.721344,
7371 45.999187,
7372 49.048878,
7373 39.29256,
7374 32.81585,
7375 26.376568,
7376 32.12724,
7377 59.9222,
7378 45.969334,
7379 47.935875,
7380 57.007023,
7381 34.043217,
7382 30.42877,
7383 53.714108,
7384 34.008293,
7385 33.648438,
7386 59.613667,
7387 31.749115,
7388 52.849945,
7389 61.664543,
7390 30.838337,
7391 43.08786,
7392 49.605602,
7393 63.165108,
7394 47.894882,
7395 51.314476,
7396 44.60029,
7397 44.015842,
7398 39.41502,
7399 59.81665,
7400 41.209156,
7401 47.579025,
7402 56.48261,
7403 46.025146,
7404 58.74744,
7405 46.206974,
7406 53.145702,
7407 60.687424,
7408 38.102413,
7409 39.646805,
7410 52.38563,
7411 34.14185,
7412 31.320894,
7413 40.573475,
7414 41.94092,
7415 30.75048,
7416 39.690254,
7417 53.560726,
7418 50.696335,
7419 0.011293956,
7420 29.16581,
7421 58.507614,
7422 40.03086,
7423 48.50645,
7424 38.79774,
7425 62.77733,
7426 47.435825,
7427 43.003845,
7428 34.368248,
7429 53.752186,
7430 55.804855,
7431 26.508045,
7432 30.6338,
7433 47.806313,
7434 56.805237,
7435 49.249695,
7436 49.522606,
7437 61.757652,
7438 61.630924,
7439 39.668633,
7440 51.79226,
7441 28.194004,
7442 53.427227,
7443 45.15016,
7444 36.015182,
7445 43.020264,
7446 54.577732,
7447 18.002365,
7448 31.860546,
7449 -0.10420398,
7450 37.094307,
7451 58.735332,
7452 12.898047,
7453 35.940807,
7454 30.280912,
7455 63.004868,
7456 47.676117,
7457 43.803253,
7458 52.02361,
7459 57.569775,
7460 -31.23627,
7461 51.3331,
7462 40.77166,
7463 48.259228,
7464 49.969627,
7465 36.618427,
7466 55.361397,
7467 40.71827,
7468 39.666965,
7469 33.43409,
7470 55.207115,
7471 32.183567,
7472 16.695406,
7473 55.5641,
7474 51.27627,
7475 47.339336,
7476 63.347527,
7477 39.062187,
7478 54.67712,
7479 65.51466,
7480 45.10427,
7481 47.36583,
7482 35.328148,
7483 30.716692,
7484 58.147617,
7485 64.86492,
7486 32.677113,
7487 55.061314,
7488 38.546684,
7489 43.151165,
7490 26.161028,
7491 44.980778,
7492 47.840103,
7493 49.251343,
7494 52.69105,
7495 49.939175,
7496 46.95092,
7497 28.887644,
7498 54.523384,
7499 27.097654,
7500 58.47151,
7501 50.23622,
7502 39.812546,
7503 59.636997,
7504 57.34273,
7505 -18.721113,
7506 48.26851,
7507 42.70037,
7508 15.134995,
7509 49.12623,
7510 59.67211,
7511 47.292377,
7512 47.805153,
7513 46.018627,
7514 37.074707,
7515 64.22567,
7516 40.90623,
7517 42.02211,
7518 36.001675
7519 ],
7520 "xaxis": "x",
7521 "y": [
7522 -20.803589,
7523 -3.7095485,
7524 -10.627376,
7525 -3.9541492,
7526 -17.816854,
7527 -21.783358,
7528 -12.137919,
7529 8.247171,
7530 -27.218586,
7531 -35.47235,
7532 0.2254613,
7533 -32.542274,
7534 -29.048313,
7535 -18.953293,
7536 -16.318848,
7537 1.29799,
7538 0.27214336,
7539 -22.427275,
7540 1.5617585,
7541 -13.859794,
7542 -10.261337,
7543 2.3437028,
7544 -11.51763,
7545 -28.920532,
7546 -14.537146,
7547 -28.30168,
7548 -17.185091,
7549 10.214211,
7550 -11.397742,
7551 -29.872732,
7552 -19.64737,
7553 0.16790108,
7554 9.72588,
7555 -19.213398,
7556 -17.097263,
7557 -23.540205,
7558 -22.659904,
7559 -30.161833,
7560 -32.789925,
7561 4.0007343,
7562 -30.553509,
7563 -19.611755,
7564 8.52158,
7565 4.1424494,
7566 1.4751459,
7567 -12.852704,
7568 -20.392239,
7569 -4.5837173,
7570 8.166061,
7571 -11.337284,
7572 -16.43065,
7573 -22.28117,
7574 7.9826016,
7575 -13.418971,
7576 -24.45379,
7577 -11.355663,
7578 9.545558,
7579 -32.61165,
7580 11.230936,
7581 -13.468946,
7582 -5.462048,
7583 -13.069021,
7584 1.5735915,
7585 -23.937035,
7586 -15.694869,
7587 -25.943512,
7588 0.82049704,
7589 -3.9954906,
7590 -18.380714,
7591 -21.956186,
7592 -17.928478,
7593 -17.166925,
7594 1.8213869,
7595 -20.784616,
7596 -11.329836,
7597 -8.567718,
7598 -11.798271,
7599 -25.911339,
7600 -10.770047,
7601 -15.446808,
7602 -32.171726,
7603 -29.32608,
7604 -35.429436,
7605 -11.357406,
7606 -14.503349,
7607 -3.407611,
7608 -5.3719177,
7609 -9.659326,
7610 -19.531103,
7611 -14.720505,
7612 -27.277906,
7613 -15.416589,
7614 0.7872089,
7615 -23.089176,
7616 -19.599855,
7617 -17.141865,
7618 -14.515779,
7619 -8.936446,
7620 -31.523523,
7621 -15.298813,
7622 -11.721406,
7623 -20.626392,
7624 -8.267473,
7625 -22.223913,
7626 -28.966488,
7627 -21.779205,
7628 -27.218397,
7629 -36.186253,
7630 0.31401816,
7631 -22.044197,
7632 -25.348227,
7633 -15.303513,
7634 2.799256,
7635 -27.043676,
7636 -29.502745,
7637 -6.9711366,
7638 -13.013833,
7639 2.553211,
7640 -14.678428,
7641 -19.333553,
7642 5.2738123,
7643 -30.191147,
7644 -8.254407,
7645 -16.734713,
7646 -36.29533,
7647 -0.7015533,
7648 -19.59588,
7649 -19.748474,
7650 -18.429428,
7651 -24.985508,
7652 -14.398376,
7653 -23.032887,
7654 -27.591204,
7655 -13.656402,
7656 -33.948692,
7657 -33.920197,
7658 -9.174384,
7659 8.925708,
7660 -22.970503,
7661 1.9238061,
7662 -5.8668604,
7663 -27.786598,
7664 -11.159512,
7665 -32.18803,
7666 -16.650103,
7667 -18.147429,
7668 -14.823587,
7669 3.2132275,
7670 -28.899687,
7671 0.73946625,
7672 -14.675726,
7673 -24.362509,
7674 -18.907366,
7675 -18.148087,
7676 -24.660992,
7677 -12.368451,
7678 10.51185,
7679 -10.045945,
7680 -30.512154,
7681 -0.48769227,
7682 -22.191689,
7683 -9.914337,
7684 -10.982109,
7685 31.096636,
7686 -11.43558,
7687 6.894826,
7688 4.1693807,
7689 1.2161766,
7690 -9.937122,
7691 -27.618727,
7692 -22.007416,
7693 -22.37126,
7694 -22.028944,
7695 -10.037108,
7696 -7.7222157,
7697 3.5807598,
7698 -6.6086307,
7699 -19.699232,
7700 -17.251148,
7701 9.637636,
7702 -10.8705435,
7703 8.272561,
7704 8.240764,
7705 -22.69967,
7706 -29.479254,
7707 -11.955685,
7708 -4.9588523,
7709 -16.469437,
7710 9.750696,
7711 -14.905879,
7712 -20.787516,
7713 -3.1344242,
7714 -3.9499974,
7715 8.201109,
7716 -19.819767,
7717 -4.076858,
7718 -24.730019,
7719 -13.261404,
7720 -11.716383,
7721 -18.290712,
7722 -15.495678,
7723 -32.85601,
7724 -13.886067,
7725 -33.77542,
7726 -22.37821,
7727 -33.790863,
7728 -23.158052,
7729 -23.911886,
7730 -28.11098,
7731 -15.843517,
7732 -24.879805,
7733 -27.03218,
7734 5.8135962,
7735 -25.135891,
7736 -25.89945,
7737 -18.168903,
7738 -15.80312,
7739 -29.042156,
7740 -23.639217,
7741 1.8415234,
7742 -16.338673,
7743 10.431047,
7744 -34.98855,
7745 -30.50168,
7746 -1.8533841,
7747 -23.127438,
7748 -26.898434,
7749 -6.0696855,
7750 -0.83113074,
7751 -13.937987,
7752 8.4994335,
7753 -25.814455,
7754 -25.507462,
7755 -1.2937344,
7756 -9.251707,
7757 -11.8820095,
7758 -13.837845,
7759 -33.480656,
7760 -20.987251,
7761 6.7093077,
7762 -24.921698,
7763 3.5488389,
7764 -18.068623,
7765 3.0699391,
7766 9.083556,
7767 -13.918425,
7768 -16.273378,
7769 -22.65874,
7770 -12.477235,
7771 11.250292,
7772 -13.376665,
7773 -5.0115275,
7774 -23.036457,
7775 -11.463062,
7776 3.7194152,
7777 -12.564382,
7778 -29.44567,
7779 -9.352621,
7780 -23.756565,
7781 -17.759132,
7782 -15.3389635,
7783 -13.819872,
7784 -6.09211,
7785 -7.863438,
7786 -13.616495,
7787 -23.899826,
7788 -9.426962,
7789 -12.24037,
7790 -18.85435,
7791 11.024011,
7792 -19.68378,
7793 -26.103676,
7794 10.497953,
7795 3.9857144,
7796 -22.706993,
7797 -2.4754145,
7798 -21.39815,
7799 3.600532,
7800 -22.364601,
7801 -16.769764,
7802 -12.030829,
7803 -28.317688,
7804 -4.760545,
7805 -17.78651,
7806 -20.541088,
7807 1.3681566,
7808 1.0861593,
7809 4.390221,
7810 -22.447065,
7811 2.2553952,
7812 -14.250181,
7813 -28.855429,
7814 -23.47392,
7815 -0.6379835,
7816 -17.019722,
7817 -23.794706,
7818 2.3137836,
7819 6.832896,
7820 -11.976225,
7821 -16.869408,
7822 -14.887161,
7823 11.149261,
7824 -15.141055,
7825 5.0789285,
7826 -17.239506,
7827 -16.723783,
7828 9.832679,
7829 -19.392942,
7830 -24.406261,
7831 -17.971964,
7832 -2.6890767,
7833 -13.708067,
7834 9.420364,
7835 -26.4286,
7836 -23.904675,
7837 -33.521553,
7838 -27.414234,
7839 -24.713099,
7840 -13.032957,
7841 -20.86936,
7842 -17.725012,
7843 -13.713904,
7844 -27.97785,
7845 1.1649175,
7846 -12.003306,
7847 3.4183521,
7848 -18.329607,
7849 -22.500238,
7850 -5.1817036,
7851 -10.172258,
7852 8.929348,
7853 -18.92016,
7854 -4.0155163,
7855 -29.874123,
7856 -23.89452,
7857 -14.478729,
7858 -21.707514,
7859 2.8463974,
7860 -24.179169,
7861 -22.502762,
7862 -18.470171,
7863 -5.5552483,
7864 2.6354103,
7865 -25.625107,
7866 -23.603718,
7867 -13.1784725,
7868 -21.927172,
7869 -17.776453,
7870 -12.744574,
7871 -24.39855,
7872 1.6557639,
7873 -25.33089,
7874 3.7044208,
7875 -14.088412,
7876 1.8123101,
7877 3.1115727,
7878 -9.5224,
7879 -8.527657,
7880 -27.493273,
7881 -28.8183,
7882 -21.120987,
7883 -0.42459357,
7884 -13.964472,
7885 -30.554207,
7886 -16.260057,
7887 -20.409258,
7888 -3.838907,
7889 -30.899261,
7890 -25.502863,
7891 4.312004,
7892 -26.893,
7893 -20.63535,
7894 -4.0243726,
7895 -33.28943,
7896 -13.433018,
7897 -21.37861,
7898 -17.676962,
7899 -33.109673,
7900 7.7211857,
7901 2.9930232,
7902 -3.4584122,
7903 -17.335155,
7904 0.4309157,
7905 -9.979049,
7906 -27.767008,
7907 -2.7953665,
7908 -23.63617,
7909 -0.20407373,
7910 2.833431,
7911 -1.6160171,
7912 -22.09123,
7913 -15.144995,
7914 -27.617838,
7915 -20.576097,
7916 -32.521618,
7917 -1.5771652,
7918 -3.4706712,
7919 -13.110925,
7920 1.27955,
7921 -13.123537,
7922 -21.404385,
7923 2.485261,
7924 -26.038076,
7925 -8.591754,
7926 -32.257572,
7927 -3.6816385,
7928 -23.705658,
7929 -3.3590631,
7930 -2.241037,
7931 -7.3185177,
7932 -20.510658,
7933 2.8498745,
7934 -14.110134,
7935 -21.078281,
7936 -16.38932,
7937 -10.101326,
7938 -29.059853,
7939 -31.21759,
7940 -1.3346295,
7941 -20.799906,
7942 -14.345478,
7943 -15.090428,
7944 -16.226871,
7945 -17.027992,
7946 -20.647305,
7947 -34.179035,
7948 -14.075991,
7949 -15.682211,
7950 -23.77744,
7951 2.101532,
7952 8.422051,
7953 -12.298222,
7954 2.824297,
7955 -18.204716,
7956 -2.6403008,
7957 -17.935425,
7958 -18.721956,
7959 -6.343975,
7960 9.154357,
7961 -16.127396,
7962 -2.973772,
7963 -22.44099,
7964 10.113919,
7965 -16.923988,
7966 -18.502573,
7967 -22.337847,
7968 5.892835,
7969 -30.008844,
7970 -26.583797,
7971 -12.331805,
7972 -1.2270886,
7973 -26.34871,
7974 -13.808859,
7975 -32.725826,
7976 -12.638194,
7977 -13.887938,
7978 -20.714098,
7979 -18.954786,
7980 8.2712965,
7981 -14.246153,
7982 -24.174063,
7983 -22.63233,
7984 -17.627256,
7985 -10.120339,
7986 -18.194794,
7987 -8.593113,
7988 -27.35188,
7989 -31.873516,
7990 -21.917208,
7991 -27.548603,
7992 -0.95101047,
7993 -8.804195,
7994 -16.590578,
7995 -25.044327,
7996 -32.0242,
7997 -14.339118,
7998 -28.126497,
7999 17.26326,
8000 -27.410538,
8001 -27.716919,
8002 -16.625145,
8003 -21.870625,
8004 -21.870728,
8005 -32.103767,
8006 -10.273103,
8007 1.9282136,
8008 -10.849964,
8009 -15.895552,
8010 -12.564632,
8011 -13.048038,
8012 -23.010983
8013 ],
8014 "yaxis": "y"
8015 },
8016 {
8017 "customdata": [
8018 [
8019 "The EU and US moved closer to<br>an aviation trade war after<br>failing to reach agreement<br>during talks Thursday on<br>subsidies to Airbus Industrie."
8020 ],
8021 [
8022 " SAN FRANCISCO (Reuters) -<br>Nike Inc. &lt;A HREF=\"http://w<br>ww.investor.reuters.com/FullQu<br>ote.aspx?ticker=NKE.N target=/<br>stocks/quickinfo/fullquote\"&gt<br>;NKE.N&lt;/A&gt;, the world's<br>largest athletic shoe company,<br>on Monday reported a 25<br>percent rise in quarterly<br>profit, beating analysts'<br>estimates, on strong demand<br>for high-end running and<br>basketball shoes in the<br>United States."
8023 ],
8024 [
8025 "NEW YORK (CBS.MW) - US stocks<br>traded mixed Thurday as Merck<br>shares lost a quarter of their<br>value, dragging blue chips<br>lower, but the Nasdaq moved<br>higher, buoyed by gains in the<br>semiconductor sector."
8026 ],
8027 [
8028 "Bankrupt ATA Airlines #39;<br>withdrawal from Chicago #39;s<br>Midway International Airport<br>presents a juicy opportunity<br>for another airline to beef up<br>service in the Midwest"
8029 ],
8030 [
8031 "The Instinet Group, owner of<br>one of the largest electronic<br>stock trading systems, is for<br>sale, executives briefed on<br>the plan say."
8032 ],
8033 [
8034 "The Auburn Hills-based<br>Chrysler Group made a profit<br>of \\$269 million in the third<br>quarter, even though worldwide<br>sales and revenues declined,<br>contributing to a \\$1."
8035 ],
8036 [
8037 "SAN FRANCISCO (CBS.MW) -- UAL<br>Corp., parent of United<br>Airlines, said Wednesday it<br>will overhaul its route<br>structure to reduce costs and<br>offset rising fuel costs."
8038 ],
8039 [
8040 "Annual economic growth in<br>China has slowed for the third<br>quarter in a row, falling to<br>9.1 per cent, third-quarter<br>data shows. The slowdown shows<br>the economy is responding to<br>Beijing #39;s efforts to rein<br>in break-neck investment and<br>lending."
8041 ],
8042 [
8043 "THE All-India Motor Transport<br>Congress (AIMTC) on Saturday<br>called off its seven-day<br>strike after finalising an<br>agreement with the Government<br>on the contentious issue of<br>service tax and the various<br>demands including tax deducted<br>at source (TDS), scrapping"
8044 ],
8045 [
8046 "AP - The euro-zone economy<br>grew by 0.5 percent in the<br>second quarter of 2004, a<br>touch slower than in the first<br>three months of the year,<br>according to initial estimates<br>released Tuesday by the<br>European Union."
8047 ],
8048 [
8049 "A few years ago, casinos<br>across the United States were<br>closing their poker rooms to<br>make space for more popular<br>and lucrative slot machines."
8050 ],
8051 [
8052 "WASHINGTON -- Consumers were<br>tightfisted amid soaring<br>gasoline costs in August and<br>hurricane-related disruptions<br>last week sent applications<br>for jobless benefits to their<br>highest level in seven months."
8053 ],
8054 [
8055 "Talking kitchens and vanities.<br>Musical jump ropes and potty<br>seats. Blusterous miniature<br>leaf blowers and vacuum<br>cleaners -- almost as loud as<br>the real things."
8056 ],
8057 [
8058 "Online merchants in the United<br>States have become better at<br>weeding out fraudulent credit<br>card orders, a new survey<br>indicates. But shipping<br>overseas remains a risky<br>venture. By Joanna Glasner."
8059 ],
8060 [
8061 "Popping a gadget into a cradle<br>to recharge it used to mean<br>downtime, but these days<br>chargers are doing double<br>duty, keeping your portable<br>devices playing even when<br>they're charging."
8062 ],
8063 [
8064 " SAN FRANCISCO (Reuters) -<br>Texas Instruments Inc. &lt;A H<br>REF=\"http://www.investor.reute<br>rs.com/FullQuote.aspx?ticker=T<br>XN.N target=/stocks/quickinfo/<br>fullquote\"&gt;TXN.N&lt;/A&gt;,<br>the largest maker of chips for<br>cellular phones, on Monday<br>said record demand for its<br>handset and television chips<br>boosted quarterly profit by<br>26 percent, even as it<br>struggles with a nagging<br>inventory problem."
8065 ],
8066 [
8067 "LONDON ARM Holdings, a British<br>semiconductor designer, said<br>on Monday that it would buy<br>Artisan Components for \\$913<br>million to broaden its product<br>range."
8068 ],
8069 [
8070 "MELBOURNE: Global shopping<br>mall owner Westfield Group<br>will team up with Australian<br>developer Multiplex Group to<br>bid 585mil (US\\$1."
8071 ],
8072 [
8073 "Reuters - Delta Air Lines Inc.<br>, which is\\racing to cut costs<br>to avoid bankruptcy, on<br>Wednesday reported\\a wider<br>quarterly loss amid soaring<br>fuel prices and weak\\domestic<br>airfares."
8074 ],
8075 [
8076 "Energy utility TXU Corp. on<br>Monday more than quadrupled<br>its quarterly dividend payment<br>and raised its projected<br>earnings for 2004 and 2005<br>after a companywide<br>performance review."
8077 ],
8078 [
8079 "Northwest Airlines Corp., the<br>fourth- largest US airline,<br>and its pilots union reached<br>tentative agreement on a<br>contract that would cut pay<br>and benefits, saving the<br>company \\$265 million a year."
8080 ],
8081 [
8082 "Microsoft Corp. MSFT.O and<br>cable television provider<br>Comcast Corp. CMCSA.O said on<br>Monday that they would begin<br>deploying set-top boxes<br>powered by Microsoft software<br>starting next week."
8083 ],
8084 [
8085 "Philippines mobile phone<br>operator Smart Communications<br>Inc. is in talks with<br>Singapore #39;s Mobile One for<br>a possible tie-up,<br>BusinessWorld reported Monday."
8086 ],
8087 [
8088 "Airline warns it may file for<br>bankruptcy if too many senior<br>pilots take early retirement<br>option. Delta Air LInes #39;<br>CEO says it faces bankruptcy<br>if it can #39;t slow the pace<br>of pilots taking early<br>retirement."
8089 ],
8090 [
8091 "Kodak Versamark #39;s parent<br>company, Eastman Kodak Co.,<br>reported Tuesday it plans to<br>eliminate almost 900 jobs this<br>year in a restructuring of its<br>overseas operations."
8092 ],
8093 [
8094 "A top official of the US Food<br>and Drug Administration said<br>Friday that he and his<br>colleagues quot;categorically<br>reject quot; earlier<br>Congressional testimony that<br>the agency has failed to<br>protect the public against<br>dangerous drugs."
8095 ],
8096 [
8097 "AFP - British retailer Marks<br>and Spencer announced a major<br>management shake-up as part of<br>efforts to revive its<br>fortunes, saying trading has<br>become tougher ahead of the<br>crucial Christmas period."
8098 ],
8099 [
8100 " ATLANTA (Reuters) - Home<br>Depot Inc. &lt;A HREF=\"http://<br>www.investor.reuters.com/FullQ<br>uote.aspx?ticker=HD.N target=/<br>stocks/quickinfo/fullquote\"&gt<br>;HD.N&lt;/A&gt;, the top home<br>improvement retailer, on<br>Tuesday reported a 15 percent<br>rise in third-quarter profit,<br>topping estimates, aided by<br>installed services and sales<br>to contractors."
8101 ],
8102 [
8103 " LONDON (Reuters) - The dollar<br>fought back from one-month<br>lows against the euro and<br>Swiss franc on Wednesday as<br>investors viewed its sell-off<br>in the wake of the Federal<br>Reserve's verdict on interest<br>rates as overdone."
8104 ],
8105 [
8106 "Boston Scientific Corp said on<br>Friday it has recalled an ear<br>implant the company acquired<br>as part of its purchase of<br>Advanced Bionics in June."
8107 ],
8108 [
8109 "MarketWatch.com. Richemont<br>sees significant H1 lift,<br>unclear on FY (2:53 AM ET)<br>LONDON (CBS.MW) -- Swiss<br>luxury goods maker<br>Richemont(zz:ZZ:001273145:<br>news, chart, profile), which<br>also is a significant"
8110 ],
8111 [
8112 "Crude oil climbed more than<br>\\$1 in New York on the re-<br>election of President George<br>W. Bush, who has been filling<br>the US Strategic Petroleum<br>Reserve."
8113 ],
8114 [
8115 "Yukos #39; largest oil-<br>producing unit regained power<br>supplies from Tyumenenergo, a<br>Siberia-based electricity<br>generator, Friday after the<br>subsidiary pledged to pay 440<br>million rubles (\\$15 million)<br>in debt by Oct. 3."
8116 ],
8117 [
8118 "US STOCKS vacillated yesterday<br>as rising oil prices muted<br>Wall Streets excitement over<br>strong results from Lehman<br>Brothers and Sprints \\$35<br>billion acquisition of Nextel<br>Communications."
8119 ],
8120 [
8121 "At the head of the class,<br>Rosabeth Moss Kanter is an<br>intellectual whirlwind: loud,<br>expansive, in constant motion."
8122 ],
8123 [
8124 "A bitter row between America<br>and the European Union over<br>alleged subsidies to rival<br>aircraft makers Boeing and<br>Airbus intensified yesterday."
8125 ],
8126 [
8127 "Amsterdam (pts) - Dutch<br>electronics company Philips<br>http://www.philips.com has<br>announced today, Friday, that<br>it has cut its stake in Atos<br>Origin by more than a half."
8128 ],
8129 [
8130 "TORONTO (CP) - Two-thirds of<br>banks around the world have<br>reported an increase in the<br>volume of suspicious<br>activities that they report to<br>police, a new report by KPMG<br>suggests."
8131 ],
8132 [
8133 "The Atkins diet frenzy slowed<br>growth briefly, but the<br>sandwich business is booming,<br>with \\$105 billion in sales<br>last year."
8134 ],
8135 [
8136 "Luxury carmaker Jaguar said<br>Friday it was stopping<br>production at a factory in<br>central England, resulting in<br>a loss of 1,100 jobs,<br>following poor sales in the<br>key US market."
8137 ],
8138 [
8139 "John Gibson said Friday that<br>he decided to resign as chief<br>executive officer of<br>Halliburton Energy Services<br>when it became apparent he<br>couldn #39;t become the CEO of<br>the entire corporation, after<br>getting a taste of the No."
8140 ],
8141 [
8142 "NEW YORK (Reuters) - Outback<br>Steakhouse Inc. said Tuesday<br>it lost about 130 operating<br>days and up to \\$2 million in<br>revenue because it had to<br>close some restaurants in the<br>South due to Hurricane<br>Charley."
8143 ],
8144 [
8145 "State insurance commissioners<br>from across the country have<br>proposed new rules governing<br>insurance brokerage fees,<br>winning praise from an<br>industry group and criticism<br>from"
8146 ],
8147 [
8148 "SOFTWARE giant Oracle #39;s<br>stalled \\$7.7bn (4.2bn) bid to<br>take over competitor<br>PeopleSoft has received a huge<br>boost after a US judge threw<br>out an anti-trust lawsuit<br>filed by the Department of<br>Justice to block the<br>acquisition."
8149 ],
8150 [
8151 "Office Depot Inc. (ODP.N:<br>Quote, Profile, Research) on<br>Tuesday warned of weaker-than-<br>expected profits for the rest<br>of the year because of<br>disruptions from the string of<br>hurricanes"
8152 ],
8153 [
8154 "THE photo-equipment maker<br>Kodak yesterday announced<br>plans to axe 600 jobs in the<br>UK and close a factory in<br>Nottinghamshire, in a move in<br>line with the giants global<br>restructuring strategy<br>unveiled last January."
8155 ],
8156 [
8157 "China's central bank on<br>Thursday raised interest rates<br>for the first time in nearly a<br>decade, signaling deepening<br>unease with the breakneck pace<br>of development and an intent<br>to reign in a construction<br>boom now sowing fears of<br>runaway inflation."
8158 ],
8159 [
8160 "CHICAGO - Delta Air Lines<br>(DAL) said Wednesday it plans<br>to eliminate between 6,000 and<br>6,900 jobs during the next 18<br>months, implement a 10 across-<br>the-board pay reduction and<br>reduce employee benefits."
8161 ],
8162 [
8163 " NEW YORK (Reuters) - U.S.<br>stocks were likely to open<br>flat on Wednesday, with high<br>oil prices and profit warnings<br>weighing on the market before<br>earnings reports start and key<br>jobs data is released this<br>week."
8164 ],
8165 [
8166 "Best known for its popular<br>search engine, Google is<br>rapidly rolling out new<br>products and muscling into<br>Microsoft's stronghold: the<br>computer desktop. The<br>competition means consumers<br>get more choices and better<br>products."
8167 ],
8168 [
8169 " MOSCOW (Reuters) - Russia's<br>Gazprom said on Tuesday it<br>will bid for embattled oil<br>firm YUKOS' main unit next<br>month, as the Kremlin seeks<br>to turn the world's biggest<br>gas producer into a major oil<br>player."
8170 ],
8171 [
8172 "Federal Reserve officials<br>raised a key short-term<br>interest rate Tuesday for the<br>fifth time this year, and<br>indicated they will gradually<br>move rates higher next year to<br>keep inflation under control<br>as the economy expands."
8173 ],
8174 [
8175 "Canadians are paying more to<br>borrow money for homes, cars<br>and other purchases today<br>after a quarter-point<br>interest-rate increase by the<br>Bank of Canada yesterday was<br>quickly matched by the<br>chartered banks."
8176 ],
8177 [
8178 "Delta Air Lines is to issue<br>millions of new shares without<br>shareholder consent as part of<br>moves to ensure its survival."
8179 ],
8180 [
8181 "Genta (GNTA:Nasdaq - news -<br>research) is never boring!<br>Monday night, the company<br>announced that its phase III<br>Genasense study in chronic<br>lymphocytic leukemia (CLL) met<br>its primary endpoint, which<br>was tumor shrinkage."
8182 ],
8183 [
8184 "While the entire airline<br>industry #39;s finances are<br>under water, ATA Airlines will<br>have to hold its breath longer<br>than its competitors to keep<br>from going belly up."
8185 ],
8186 [
8187 "One day after ousting its<br>chief executive, the nation's<br>largest insurance broker said<br>it will tell clients exactly<br>how much they are paying for<br>services and renounce back-<br>door payments from carriers."
8188 ],
8189 [
8190 "LONDON (CBS.MW) -- Outlining<br>an expectation for higher oil<br>prices and increasing demand,<br>Royal Dutch/Shell on Wednesday<br>said it #39;s lifting project<br>spending to \\$45 billion over<br>the next three years."
8191 ],
8192 [
8193 "Tuesday #39;s meeting could<br>hold clues to whether it<br>#39;ll be a November or<br>December pause in rate hikes.<br>By Chris Isidore, CNN/Money<br>senior writer."
8194 ],
8195 [
8196 "The dollar may fall against<br>the euro for a third week in<br>four on concern near-record<br>crude oil prices will temper<br>the pace of expansion in the<br>US economy, a survey by<br>Bloomberg News indicates."
8197 ],
8198 [
8199 "The battle for the British-<br>based Chelsfield plc hotted up<br>at the weekend, with reports<br>from London that the property<br>giant #39;s management was<br>working on its own bid to<br>thwart the 585 million (\\$A1."
8200 ],
8201 [
8202 "SAN DIEGO --(Business Wire)--<br>Oct. 11, 2004 -- Breakthrough<br>PeopleSoft EnterpriseOne 8.11<br>Applications Enable<br>Manufacturers to Become<br>Demand-Driven."
8203 ],
8204 [
8205 "Reuters - Oil prices rose on<br>Friday as tight\\supplies of<br>distillate fuel, including<br>heating oil, ahead of\\the<br>northern hemisphere winter<br>spurred buying."
8206 ],
8207 [
8208 "Nov. 18, 2004 - An FDA<br>scientist says the FDA, which<br>is charged with protecting<br>America #39;s prescription<br>drug supply, is incapable of<br>doing so."
8209 ],
8210 [
8211 "The UK's inflation rate fell<br>in September, thanks in part<br>to a fall in the price of<br>airfares, increasing the<br>chance that interest rates<br>will be kept on hold."
8212 ],
8213 [
8214 " HONG KONG/SAN FRANCISCO<br>(Reuters) - IBM is selling its<br>PC-making business to China's<br>largest personal computer<br>company, Lenovo Group Ltd.,<br>for \\$1.25 billion, marking<br>the U.S. firm's retreat from<br>an industry it helped pioneer<br>in 1981."
8215 ],
8216 [
8217 "Nordstrom reported a strong<br>second-quarter profit as it<br>continued to select more<br>relevant inventory and sell<br>more items at full price."
8218 ],
8219 [
8220 "The Bank of England is set to<br>keep interest rates on hold<br>following the latest meeting<br>of the its Monetary Policy<br>Committee."
8221 ],
8222 [
8223 "The Bush administration upheld<br>yesterday the imposition of<br>penalty tariffs on shrimp<br>imports from China and<br>Vietnam, handing a victory to<br>beleaguered US shrimp<br>producers."
8224 ],
8225 [
8226 "House prices rose 0.2 percent<br>in September compared with the<br>month before to stand up 17.8<br>percent on a year ago, the<br>Nationwide Building Society<br>says."
8227 ],
8228 [
8229 "Nortel Networks says it will<br>again delay the release of its<br>restated financial results.<br>The Canadian telecom vendor<br>originally promised to release<br>the restated results in<br>September."
8230 ],
8231 [
8232 " CHICAGO (Reuters) - At first<br>glance, paying \\$13 or \\$14<br>for a hard-wired Internet<br>laptop connection in a hotel<br>room might seem expensive."
8233 ],
8234 [
8235 "Reuters - An investigation<br>into U.S. insurers\\and brokers<br>rattled insurance industry<br>stocks for a second day\\on<br>Friday as investors, shaken<br>further by subpoenas<br>delivered\\to the top U.S. life<br>insurer, struggled to gauge<br>how deep the\\probe might<br>reach."
8236 ],
8237 [
8238 "The Dow Jones Industrial<br>Average failed three times<br>this year to exceed its<br>previous high and fell to<br>about 10,000 each time, most<br>recently a week ago."
8239 ],
8240 [
8241 " SINGAPORE (Reuters) - Asian<br>share markets staged a broad-<br>based retreat on Wednesday,<br>led by steelmakers amid<br>warnings of price declines,<br>but also enveloping technology<br>and financial stocks on<br>worries that earnings may<br>disappoint."
8242 ],
8243 [
8244 "NEW YORK - CNN has a new boss<br>for the second time in 14<br>months: former CBS News<br>executive Jonathan Klein, who<br>will oversee programming and<br>editorial direction at the<br>second-ranked cable news<br>network."
8245 ],
8246 [
8247 "Cut-price carrier Virgin Blue<br>said Tuesday the cost of using<br>Australian airports is<br>spiraling upward and asked the<br>government to review the<br>deregulated system of charges."
8248 ],
8249 [
8250 "Saudi Arabia, Kuwait and the<br>United Arab Emirates, which<br>account for almost half of<br>OPEC #39;s oil output, said<br>they #39;re committed to<br>boosting capacity to meet<br>soaring demand that has driven<br>prices to a record."
8251 ],
8252 [
8253 "The US Commerce Department<br>said Thursday personal income<br>posted its biggest increase in<br>three months in August. The<br>government agency also said<br>personal spending was<br>unchanged after rising<br>strongly in July."
8254 ],
8255 [
8256 " TOKYO (Reuters) - Tokyo's<br>Nikkei average opened up 0.54<br>percent on Monday with banks<br>and exporters leading the way<br>as a stronger finish on Wall<br>Street and declining oil<br>prices soothed worries over<br>the global economic outlook."
8257 ],
8258 [
8259 "Bruce Wasserstein, head of<br>Lazard LLC, is asking partners<br>to take a one-third pay cut as<br>he readies the world #39;s<br>largest closely held<br>investment bank for a share<br>sale, people familiar with the<br>situation said."
8260 ],
8261 [
8262 "The Lemon Bay Manta Rays were<br>not going to let a hurricane<br>get in the way of football. On<br>Friday, they headed to the<br>practice field for the first<br>time in eight"
8263 ],
8264 [
8265 "Microsoft Corp. Chairman Bill<br>Gates has donated \\$400,000 to<br>a campaign in California<br>trying to win approval of a<br>measure calling for the state<br>to sell \\$3 billion in bonds<br>to fund stem-cell research."
8266 ],
8267 [
8268 "Newspaper publisher Pulitzer<br>Inc. said Sunday that company<br>officials are considering a<br>possible sale of the firm to<br>boost shareholder value."
8269 ],
8270 [
8271 "Shares of Merck amp; Co.<br>plunged almost 10 percent<br>yesterday after a media report<br>said that documents show the<br>pharmaceutical giant hid or<br>denied"
8272 ],
8273 [
8274 "Reuters - Wall Street was<br>expected to dip at\\Thursday's<br>opening, but shares of Texas<br>Instruments Inc.\\, may climb<br>after it gave upbeat earnings<br>guidance."
8275 ],
8276 [
8277 "Late in August, Boeing #39;s<br>top sales execs flew to<br>Singapore for a crucial sales<br>pitch. They were close to<br>persuading Singapore Airlines,<br>one of the world #39;s leading<br>airlines, to buy the American<br>company #39;s new jet, the<br>mid-sized 7E7."
8278 ],
8279 [
8280 "SBC Communications and<br>BellSouth will acquire<br>YellowPages.com with the goal<br>of building the site into a<br>nationwide online business<br>index, the companies said<br>Thursday."
8281 ],
8282 [
8283 "The sounds of tinkling bells<br>could be heard above the<br>bustle of the Farmers Market<br>on the Long Beach Promenade,<br>leading shoppers to a row of<br>bright red tin kettles dotting<br>a pathway Friday."
8284 ],
8285 [
8286 "LONDON Santander Central<br>Hispano of Spain looked<br>certain to clinch its bid for<br>the British mortgage lender<br>Abbey National, after HBOS,<br>Britain #39;s biggest home-<br>loan company, said Wednesday<br>it would not counterbid, and<br>after the European Commission<br>cleared"
8287 ],
8288 [
8289 " WASHINGTON (Reuters) - The<br>Justice Department is<br>investigating possible<br>accounting fraud at Fannie<br>Mae, bringing greater<br>government scrutiny to bear on<br>the mortgage finance company,<br>already facing a parallel<br>inquiry by the SEC, a source<br>close to the matter said on<br>Thursday."
8290 ],
8291 [
8292 "Indian industrial group Tata<br>agrees to invest \\$2bn in<br>Bangladesh, the biggest single<br>deal agreed by a firm in the<br>south Asian country."
8293 ],
8294 [
8295 "The steel tubing company<br>reports sharply higher<br>earnings, but the stock is<br>falling."
8296 ],
8297 [
8298 "Playboy Enterprises, the adult<br>entertainment company, has<br>announced plans to open a<br>private members club in<br>Shanghai even though the<br>company #39;s flagship men<br>#39;s magazine is still banned<br>in China."
8299 ],
8300 [
8301 "TORONTO (CP) - Earnings<br>warnings from Celestica and<br>Coca-Cola along with a<br>slowdown in US industrial<br>production sent stock markets<br>lower Wednesday."
8302 ],
8303 [
8304 "Eastman Kodak Co., the world<br>#39;s largest maker of<br>photographic film, said<br>Wednesday it expects sales of<br>digital products and services<br>to grow at an annual rate of<br>36 percent between 2003 and<br>2007, above prior growth rate<br>estimates of 26 percent<br>between 2002"
8305 ],
8306 [
8307 "AFP - The Iraqi government<br>plans to phase out slowly<br>subsidies on basic products,<br>such as oil and electricity,<br>which comprise 50 percent of<br>public spending, equal to 15<br>billion dollars, the planning<br>minister said."
8308 ],
8309 [
8310 "The federal agency that<br>insures pension plans said<br>that its deficit, already at<br>the highest in its history,<br>had doubled in its last fiscal<br>year, to \\$23.3 billion."
8311 ],
8312 [
8313 "A Milan judge on Tuesday opens<br>hearings into whether to put<br>on trial 32 executives and<br>financial institutions over<br>the collapse of international<br>food group Parmalat in one of<br>Europe #39;s biggest fraud<br>cases."
8314 ],
8315 [
8316 "The Bank of England on<br>Thursday left its benchmark<br>interest rate unchanged, at<br>4.75 percent, as policy makers<br>assessed whether borrowing<br>costs, already the highest in<br>the Group of Seven, are<br>constraining consumer demand."
8317 ],
8318 [
8319 "Fashion retailers Austin Reed<br>and Ted Baker have reported<br>contrasting fortunes on the<br>High Street. Austin Reed<br>reported interim losses of 2."
8320 ],
8321 [
8322 " NEW YORK (Reuters) - A<br>federal judge on Friday<br>approved Citigroup Inc.'s<br>\\$2.6 billion settlement with<br>WorldCom Inc. investors who<br>lost billions when an<br>accounting scandal plunged<br>the telecommunications company<br>into bankruptcy protection."
8323 ],
8324 [
8325 "An unspecified number of<br>cochlear implants to help<br>people with severe hearing<br>loss are being recalled<br>because they may malfunction<br>due to ear moisture, the US<br>Food and Drug Administration<br>announced."
8326 ],
8327 [
8328 "Profits triple at McDonald's<br>Japan after the fast-food<br>chain starts selling larger<br>burgers."
8329 ],
8330 [
8331 "Britain #39;s inflation rate<br>fell in August further below<br>its 2.0 percent government-set<br>upper limit target with<br>clothing and footwear prices<br>actually falling, official<br>data showed on Tuesday."
8332 ],
8333 [
8334 " LONDON (Reuters) - European<br>shares shrugged off a spike in<br>the euro to a fresh all-time<br>high Wednesday, with telecoms<br>again leading the way higher<br>after interim profits at<br>Britain's mm02 beat<br>expectations."
8335 ],
8336 [
8337 "WASHINGTON - Weighed down by<br>high energy prices, the US<br>economy grew slower than the<br>government estimated in the<br>April-June quarter, as higher<br>oil prices limited consumer<br>spending and contributed to a<br>record trade deficit."
8338 ],
8339 [
8340 "CHICAGO United Airlines says<br>it will need even more labor<br>cuts than anticipated to get<br>out of bankruptcy. United told<br>a bankruptcy court judge in<br>Chicago today that it intends<br>to start talks with unions<br>next month on a new round of<br>cost savings."
8341 ],
8342 [
8343 "The University of California,<br>Berkeley, has signed an<br>agreement with the Samoan<br>government to isolate, from a<br>tree, the gene for a promising<br>anti- Aids drug and to share<br>any royalties from the sale of<br>a gene-derived drug with the<br>people of Samoa."
8344 ],
8345 [
8346 " TOKYO (Reuters) - Tokyo's<br>Nikkei average jumped 2.5<br>percent by mid-afternoon on<br>Monday as semiconductor-<br>related stocks such as<br>Advantest Corp. mirrored a<br>rally by their U.S. peers<br>while banks and brokerages<br>extended last week's gains."
8347 ],
8348 [
8349 "General Motors (GM) plans to<br>announce a massive<br>restructuring Thursday that<br>will eliminate as many as<br>12,000 jobs in Europe in a<br>move to stem the five-year<br>flow of red ink from its auto<br>operations in the region."
8350 ],
8351 [
8352 " LONDON (Reuters) - Oil prices<br>held firm on Wednesday as<br>Hurricane Ivan closed off<br>crude output and shut<br>refineries in the Gulf of<br>Mexico, while OPEC's Gulf<br>producers tried to reassure<br>traders by recommending an<br>output hike."
8353 ],
8354 [
8355 "State-owned, running a<br>monopoly on imports of jet<br>fuel to China #39;s fast-<br>growing aviation industry and<br>a prized member of Singapore<br>#39;s Stock Exchange."
8356 ],
8357 [
8358 "Google has won a trade mark<br>dispute, with a District Court<br>judge finding that the search<br>engines sale of sponsored<br>search terms Geico and Geico<br>Direct did not breach car<br>insurance firm GEICOs rights<br>in the trade marked terms."
8359 ],
8360 [
8361 "Wall Street bounded higher for<br>the second straight day<br>yesterday as investors reveled<br>in sharply falling oil prices<br>and the probusiness agenda of<br>the second Bush<br>administration. The Dow Jones<br>industrials gained more than<br>177 points for its best day of<br>2004, while the Standard amp;<br>Poor's 500 closed at its<br>highest level since early<br>2002."
8362 ],
8363 [
8364 "Key factors help determine if<br>outsourcing benefits or hurts<br>Americans."
8365 ],
8366 [
8367 "The US Trade Representative on<br>Monday rejected the European<br>Union #39;s assertion that its<br>ban on beef from hormone-<br>treated cattle is now<br>justified by science and that<br>US and Canadian retaliatory<br>sanctions should be lifted."
8368 ],
8369 [
8370 "NEW YORK -- Wall Street's<br>fourth-quarter rally gave<br>stock mutual funds a solid<br>performance for 2004, with<br>small-cap equity funds and<br>real estate funds scoring some<br>of the biggest returns. Large-<br>cap growth equities and<br>technology-focused funds had<br>the slimmest gains."
8371 ],
8372 [
8373 "Big Food Group Plc, the UK<br>owner of the Iceland grocery<br>chain, said second-quarter<br>sales at stores open at least<br>a year dropped 3.3 percent,<br>the second consecutive<br>decline, after competitors cut<br>prices."
8374 ],
8375 [
8376 " WASHINGTON (Reuters) - The<br>first case of soybean rust has<br>been found on the mainland<br>United States and could affect<br>U.S. crops for the near<br>future, costing farmers<br>millions of dollars, the<br>Agriculture Department said on<br>Wednesday."
8377 ],
8378 [
8379 "The Supreme Court today<br>overturned a five-figure<br>damage award to an Alexandria<br>man for a local auto dealer<br>#39;s alleged loan scam,<br>ruling that a Richmond-based<br>federal appeals court had<br>wrongly"
8380 ],
8381 [
8382 "Official figures show the<br>12-nation eurozone economy<br>continues to grow, but there<br>are warnings it may slow down<br>later in the year."
8383 ],
8384 [
8385 "In upholding a lower court<br>#39;s ruling, the Supreme<br>Court rejected arguments that<br>the Do Not Call list violates<br>telemarketers #39; First<br>Amendment rights."
8386 ],
8387 [
8388 "Infineon Technologies, the<br>second-largest chip maker in<br>Europe, said Wednesday that it<br>planned to invest about \\$1<br>billion in a new factory in<br>Malaysia to expand its<br>automotive chip business and<br>be closer to customers in the<br>region."
8389 ],
8390 [
8391 " NEW YORK (Reuters) -<br>Washington Post Co. &lt;A HREF<br>=\"http://www.investor.reuters.<br>com/FullQuote.aspx?ticker=WPO.<br>N target=/stocks/quickinfo/ful<br>lquote\"&gt;WPO.N&lt;/A&gt;<br>said on Friday that quarterly<br>profit jumped, beating<br>analysts' forecasts, boosted<br>by results at its Kaplan<br>education unit and television<br>broadcasting operations."
8392 ],
8393 [
8394 "New orders for US-made durable<br>goods increased 0.2pc in<br>September, held back by a big<br>drop in orders for<br>transportation goods, the US<br>Commerce Department said<br>today."
8395 ],
8396 [
8397 "Siblings are the first ever to<br>be convicted for sending<br>boatloads of junk e-mail<br>pushing bogus products. Also:<br>Microsoft takes MSN music<br>download on a Euro trip....<br>Nokia begins legal battle<br>against European<br>counterparts.... and more."
8398 ],
8399 [
8400 "I always get a kick out of the<br>annual list published by<br>Forbes singling out the<br>richest people in the country.<br>It #39;s almost as amusing as<br>those on the list bickering<br>over their placement."
8401 ],
8402 [
8403 "Williams-Sonoma Inc., operator<br>of home furnishing chains<br>including Pottery Barn, said<br>third-quarter earnings rose 19<br>percent, boosted by store<br>openings and catalog sales."
8404 ],
8405 [
8406 "TOKYO - Mitsubishi Heavy<br>Industries said today it #39;s<br>in talks to buy a plot of land<br>in central Japan #39;s Nagoya<br>city from Mitsubishi Motors<br>for building aircraft parts."
8407 ],
8408 [
8409 "Japan #39;s Sumitomo Mitsui<br>Financial Group Inc. said<br>Tuesday it proposed to UFJ<br>Holdings Inc. that the two<br>banks merge on an equal basis<br>in its latest attempt to woo<br>UFJ away from a rival suitor."
8410 ],
8411 [
8412 "Oil futures prices were little<br>changed Thursday as traders<br>anxiously watched for<br>indications that the supply or<br>demand picture would change in<br>some way to add pressure to<br>the market or take some away."
8413 ],
8414 [
8415 " CHICAGO (Reuters) - Delta Air<br>Lines Inc. &lt;A HREF=\"http://<br>www.investor.reuters.com/FullQ<br>uote.aspx?ticker=DAL.N target=<br>/stocks/quickinfo/fullquote\"&g<br>t;DAL.N&lt;/A&gt; said on<br>Tuesday it will cut wages by<br>10 percent and its chief<br>executive will go unpaid for<br>the rest of the year, but it<br>still warned of bankruptcy<br>within weeks unless more cuts<br>are made."
8416 ],
8417 [
8418 " WASHINGTON (Reuters) - A<br>former Fannie Mae &lt;A HREF=\"<br>http://www.investor.reuters.co<br>m/FullQuote.aspx?ticker=FNM.N <br>target=/stocks/quickinfo/fullq<br>uote\"&gt;FNM.N&lt;/A&gt;<br>employee who gave U.S.<br>officials information about<br>what he saw as accounting<br>irregularities will not<br>testify as planned before a<br>congressional hearing next<br>week, a House committee said<br>on Friday."
8419 ],
8420 [
8421 "PARIS, Nov 4 (AFP) - The<br>European Aeronautic Defence<br>and Space Company reported<br>Thursday that its nine-month<br>net profit more than doubled,<br>thanks largely to sales of<br>Airbus aircraft, and raised<br>its full-year forecast."
8422 ],
8423 [
8424 "The number of people claiming<br>unemployment benefit last<br>month fell by 6,100 to<br>830,200, according to the<br>Office for National<br>Statistics."
8425 ],
8426 [
8427 "Tyler airlines are gearing up<br>for the beginning of holiday<br>travel, as officials offer<br>tips to help travelers secure<br>tickets and pass through<br>checkpoints with ease."
8428 ],
8429 [
8430 "A criminal trial scheduled to<br>start Monday involving former<br>Enron Corp. executives may<br>shine a rare and potentially<br>harsh spotlight on the inner<br>workings"
8431 ],
8432 [
8433 "Wal-Mart Stores Inc. #39;s<br>Asda, the UK #39;s second<br>biggest supermarket chain,<br>surpassed Marks amp; Spencer<br>Group Plc as Britain #39;s<br>largest clothing retailer in<br>the last three months,<br>according to the Sunday<br>Telegraph."
8434 ],
8435 [
8436 "Oil supply concerns and broker<br>downgrades of blue-chip<br>companies left stocks mixed<br>yesterday, raising doubts that<br>Wall Street #39;s year-end<br>rally would continue."
8437 ],
8438 [
8439 "Genentech Inc. said the<br>marketing of Rituxan, a cancer<br>drug that is the company #39;s<br>best-selling product, is the<br>subject of a US criminal<br>investigation."
8440 ],
8441 [
8442 " The world's No. 2 soft drink<br>company said on Thursday<br>quarterly profit rose due to<br>tax benefits."
8443 ],
8444 [
8445 "USATODAY.com - Personal<br>finance software programs are<br>the computer industry's<br>version of veggies: Everyone<br>knows they're good for you,<br>but it's just hard to get<br>anyone excited about them."
8446 ],
8447 [
8448 " NEW YORK (Reuters) - The<br>dollar rebounded on Monday<br>after last week's heavy<br>selloff, but analysts were<br>uncertain if the rally would<br>hold after fresh economic data<br>suggested the December U.S.<br>jobs report due Friday might<br>not live up to expectations."
8449 ],
8450 [
8451 " NEW YORK (Reuters) - U.S.<br>stock futures pointed to a<br>lower open on Wall Street on<br>Thursday, extending the<br>previous session's sharp<br>fall, with rising energy<br>prices feeding investor<br>concerns about corporate<br>profits and slower growth."
8452 ],
8453 [
8454 "MILAN General Motors and Fiat<br>on Wednesday edged closer to<br>initiating a legal battle that<br>could pit the two carmakers<br>against each other in a New<br>York City court room as early<br>as next month."
8455 ],
8456 [
8457 "Two of the Ford Motor Company<br>#39;s most senior executives<br>retired on Thursday in a sign<br>that the company #39;s deep<br>financial crisis has abated,<br>though serious challenges<br>remain."
8458 ],
8459 [
8460 " LONDON (Reuters) - Wall<br>Street was expected to start<br>little changed on Friday as<br>investors continue to fret<br>over the impact of high oil<br>prices on earnings, while<br>Boeing &lt;A HREF=\"http://www.<br>investor.reuters.com/FullQuote<br>.aspx?ticker=BA.N target=/stoc<br>ks/quickinfo/fullquote\"&gt;BA.<br>N&lt;/A&gt; will be eyed<br>after it reiterated its<br>earnings forecast."
8461 ],
8462 [
8463 "Having an always-on, fast net<br>connection is changing the way<br>Britons use the internet,<br>research suggests."
8464 ],
8465 [
8466 "Crude oil futures prices<br>dropped below \\$51 a barrel<br>yesterday as supply concerns<br>ahead of the Northern<br>Hemisphere winter eased after<br>an unexpectedly high rise in<br>US inventories."
8467 ],
8468 [
8469 "By Lilly Vitorovich Of DOW<br>JONES NEWSWIRES SYDNEY (Dow<br>Jones)--Rupert Murdoch has<br>seven weeks to convince News<br>Corp. (NWS) shareholders a<br>move to the US will make the<br>media conglomerate more<br>attractive to"
8470 ],
8471 [
8472 "The long-term economic health<br>of the United States is<br>threatened by \\$53 trillion in<br>government debts and<br>liabilities that start to come<br>due in four years when baby<br>boomers begin to retire."
8473 ],
8474 [
8475 "The Moscow Arbitration Court<br>ruled on Monday that the YUKOS<br>oil company must pay RUR<br>39.113bn (about \\$1.34bn) as<br>part of its back tax claim for<br>2001."
8476 ],
8477 [
8478 "NOVEMBER 11, 2004 -- Bankrupt<br>US Airways this morning said<br>it had reached agreements with<br>lenders and lessors to<br>continue operating nearly all<br>of its mainline and US Airways<br>Express fleets."
8479 ],
8480 [
8481 "The US government asks the<br>World Trade Organisation to<br>step in to stop EU member<br>states from \"subsidising\"<br>planemaker Airbus."
8482 ],
8483 [
8484 "Boston Scientific Corp.<br>(BSX.N: Quote, Profile,<br>Research) said on Wednesday it<br>received US regulatory<br>approval for a device to treat<br>complications that arise in<br>patients with end-stage kidney<br>disease who need dialysis."
8485 ],
8486 [
8487 "With the economy slowly<br>turning up, upgrading hardware<br>has been on businesses radar<br>in the past 12 months as their<br>number two priority."
8488 ],
8489 [
8490 "Toyota Motor Corp. #39;s<br>shares fell for a second day,<br>after the world #39;s second-<br>biggest automaker had an<br>unexpected quarterly profit<br>drop."
8491 ],
8492 [
8493 "Britain-based HBOS says it<br>will file a complaint to the<br>European Commission against<br>Spanish bank Santander Central<br>Hispano (SCH) in connection<br>with SCH #39;s bid to acquire<br>British bank Abbey National"
8494 ],
8495 [
8496 "Verizon Wireless on Thursday<br>announced an agreement to<br>acquire all the PCS spectrum<br>licenses of NextWave Telecom<br>Inc. in 23 markets for \\$3<br>billion."
8497 ],
8498 [
8499 " WASHINGTON (Reuters) - The<br>PIMCO mutual fund group has<br>agreed to pay \\$50 million to<br>settle fraud charges involving<br>improper rapid dealing in<br>mutual fund shares, the U.S.<br>Securities and Exchange<br>Commission said on Monday."
8500 ],
8501 [
8502 "The Conference Board reported<br>Thursday that the Leading<br>Economic Index fell for a<br>third consecutive month in<br>August, suggesting slower<br>economic growth ahead amid<br>rising oil prices."
8503 ],
8504 [
8505 " SAN FRANCISCO (Reuters) -<br>Software maker Adobe Systems<br>Inc.&lt;A HREF=\"http://www.inv<br>estor.reuters.com/FullQuote.as<br>px?ticker=ADBE.O target=/stock<br>s/quickinfo/fullquote\"&gt;ADBE<br>.O&lt;/A&gt; on Thursday<br>posted a quarterly profit that<br>rose more than one-third from<br>a year ago, but shares fell 3<br>percent after the maker of<br>Photoshop and Acrobat software<br>did not raise forecasts for<br>fiscal 2005."
8506 ],
8507 [
8508 "William Morrison Supermarkets<br>has agreed to sell 114 small<br>Safeway stores and a<br>distribution centre for 260.2<br>million pounds. Morrison<br>bought these stores as part of<br>its 3 billion pound"
8509 ],
8510 [
8511 "Pepsi pushes a blue version of<br>Mountain Dew only at Taco<br>Bell. Is this a winning<br>strategy?"
8512 ],
8513 [
8514 "As the election approaches,<br>Congress abandons all pretense<br>of fiscal responsibility,<br>voting tax cuts that would<br>drive 10-year deficits past<br>\\$3 trillion."
8515 ],
8516 [
8517 "ServiceMaster profitably<br>bundles services and pays a<br>healthy 3.5 dividend."
8518 ],
8519 [
8520 "\\$222.5 million -- in an<br>ongoing securities class<br>action lawsuit against Enron<br>Corp. The settlement,<br>announced Friday and"
8521 ],
8522 [
8523 " NEW YORK (Reuters) -<br>Lifestyle guru Martha Stewart<br>said on Wednesday she wants<br>to start serving her prison<br>sentence for lying about a<br>suspicious stock sale as soon<br>as possible, so she can put<br>her \"nightmare\" behind her."
8524 ],
8525 [
8526 "Apple Computer's iPod remains<br>the king of digital music<br>players, but robust pretenders<br>to the throne have begun to<br>emerge in the Windows<br>universe. One of them is the<br>Zen Touch, from Creative Labs."
8527 ],
8528 [
8529 "SAN FRANCISCO (CBS.MW) --<br>Crude futures closed under<br>\\$46 a barrel Wednesday for<br>the first time since late<br>September and heating-oil and<br>unleaded gasoline prices<br>dropped more than 6 percent<br>following an across-the-board<br>climb in US petroleum<br>inventories."
8530 ],
8531 [
8532 "The University of Iowa #39;s<br>market for US presidential<br>futures, founded 16-years ago,<br>has been overtaken by a<br>Dublin-based exchange that is<br>now 25 times larger."
8533 ],
8534 [
8535 "President Bush #39;s drive to<br>deploy a multibillion-dollar<br>shield against ballistic<br>missiles was set back on<br>Wednesday by what critics<br>called a stunning failure of<br>its first full flight test in<br>two years."
8536 ],
8537 [
8538 "Air travelers moved one step<br>closer to being able to talk<br>on cell phones and surf the<br>Internet from laptops while in<br>flight, thanks to votes by the<br>Federal Communications<br>Commission yesterday."
8539 ],
8540 [
8541 "DESPITE the budget deficit,<br>continued increases in oil and<br>consumer prices, the economy,<br>as measured by gross domestic<br>product, grew by 6.3 percent<br>in the third"
8542 ],
8543 [
8544 "Consumers who cut it close by<br>paying bills from their<br>checking accounts a couple of<br>days before depositing funds<br>will be out of luck under a<br>new law that takes effect Oct.<br>28."
8545 ],
8546 [
8547 "Component problems meant<br>Brillian's new big screens<br>missed the NFL's kickoff<br>party."
8548 ],
8549 [
8550 "A Russian court on Thursday<br>rejected an appeal by the<br>Yukos oil company seeking to<br>overturn a freeze on the<br>accounts of the struggling oil<br>giant #39;s core subsidiaries."
8551 ],
8552 [
8553 "Switzerland #39;s struggling<br>national airline reported a<br>second-quarter profit of 45<br>million Swiss francs (\\$35.6<br>million) Tuesday, although its<br>figures were boosted by a<br>legal settlement in France."
8554 ],
8555 [
8556 "SIPTU has said it is strongly<br>opposed to any privatisation<br>of Aer Lingus as pressure<br>mounts on the Government to<br>make a decision on the future<br>funding of the airline."
8557 ],
8558 [
8559 "Molson Inc. Chief Executive<br>Officer Daniel O #39;Neill<br>said he #39;ll provide<br>investors with a positive #39;<br>#39; response to their<br>concerns over the company<br>#39;s plan to let stock-<br>option holders vote on its<br>planned merger with Adolph<br>Coors Co."
8560 ],
8561 [
8562 " NEW YORK (Reuters) - The<br>world's largest gold producer,<br>Newmont Mining Corp. &lt;A HRE<br>F=\"http://www.investor.reuters<br>.com/FullQuote.aspx?ticker=NEM<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;NEM.N&lt;/A&gt;,<br>on Wednesday said higher gold<br>prices drove up quarterly<br>profit by 12.5 percent, even<br>though it sold less of the<br>precious metal."
8563 ],
8564 [
8565 " WASHINGTON (Reuters) - Fannie<br>Mae executives and their<br>regulator squared off on<br>Wednesday, with executives<br>denying any accounting<br>irregularity and the regulator<br>saying the housing finance<br>company's management may need<br>to go."
8566 ],
8567 [
8568 "As the first criminal trial<br>stemming from the financial<br>deals at Enron opened in<br>Houston on Monday, it is<br>notable as much for who is not<br>among the six defendants as<br>who is - and for how little<br>money was involved compared<br>with how much in other Enron"
8569 ],
8570 [
8571 "LONDON (CBS.MW) -- British<br>bank Barclays on Thursday said<br>it is in talks to buy a<br>majority stake in South<br>African bank ABSA. Free!"
8572 ],
8573 [
8574 "Investors sent stocks sharply<br>lower yesterday as oil prices<br>continued their climb higher<br>and new questions about the<br>safety of arthritis drugs<br>pressured pharmaceutical<br>stocks."
8575 ],
8576 [
8577 "Reuters - The head of UAL<br>Corp.'s United\\Airlines said<br>on Thursday the airline's<br>restructuring plan\\would lead<br>to a significant number of job<br>losses, but it was\\not clear<br>how many."
8578 ],
8579 [
8580 "com September 14, 2004, 9:12<br>AM PT. With the economy slowly<br>turning up, upgrading hardware<br>has been on businesses radar<br>in the past 12 months as their<br>number two priority."
8581 ],
8582 [
8583 " NEW YORK (Reuters) -<br>Children's Place Retail Stores<br>Inc. &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=PLCE.O target=/sto<br>cks/quickinfo/fullquote\"&gt;PL<br>CE.O&lt;/A&gt; said on<br>Wednesday it will buy 313<br>retail stores from Walt<br>Disney Co., and its stock rose<br>more than 14 percent in early<br>morning trade."
8584 ],
8585 [
8586 "ALBANY, N.Y. -- A California-<br>based company that brokers<br>life, accident, and disability<br>policies for leading US<br>companies pocketed millions of<br>dollars a year in hidden<br>payments from insurers and<br>from charges on clients'<br>unsuspecting workers, New York<br>Attorney General Eliot Spitzer<br>charged yesterday."
8587 ],
8588 [
8589 "NORTEL Networks plans to slash<br>its workforce by 3500, or ten<br>per cent, as it struggles to<br>recover from an accounting<br>scandal that toppled three top<br>executives and led to a<br>criminal investigation and<br>lawsuits."
8590 ],
8591 [
8592 "Ebay Inc. (EBAY.O: Quote,<br>Profile, Research) said on<br>Friday it would buy Rent.com,<br>an Internet housing rental<br>listing service, for \\$415<br>million in a deal that gives<br>it access to a new segment of<br>the online real estate market."
8593 ],
8594 [
8595 "Noranda Inc., Canada #39;s<br>biggest mining company, began<br>exclusive talks on a takeover<br>proposal from China Minmetals<br>Corp. that would lead to the<br>spinoff of Noranda #39;s<br>aluminum business to<br>shareholders."
8596 ],
8597 [
8598 "Google warned Thursday that<br>increased competition and the<br>maturing of the company would<br>result in an quot;inevitable<br>quot; slowing of its growth."
8599 ],
8600 [
8601 " TOKYO (Reuters) - The Nikkei<br>average rose 0.55 percent by<br>midsession on Wednesday as<br>some techs including Advantest<br>Corp. gained ground after<br>Wall Street reacted positively<br>to results from Intel Corp.<br>released after the U.S. market<br>close."
8602 ],
8603 [
8604 " ATLANTA (Reuters) - Soft<br>drink giant Coca-Cola Co.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=KO.N target=/stocks/quic<br>kinfo/fullquote\"&gt;KO.N&lt;/A<br>&gt;, stung by a prolonged<br>downturn in North America,<br>Germany and other major<br>markets, on Thursday lowered<br>its key long-term earnings<br>and sales targets."
8605 ],
8606 [
8607 "A Canadian court approved Air<br>Canada #39;s (AC.TO: Quote,<br>Profile, Research) plan of<br>arrangement with creditors on<br>Monday, clearing the way for<br>the world #39;s 11th largest<br>airline to emerge from<br>bankruptcy protection at the<br>end of next month"
8608 ],
8609 [
8610 " LONDON (Reuters) - Oil prices<br>eased on Monday after rebels<br>in Nigeria withdrew a threat<br>to target oil operations, but<br>lingering concerns over<br>stretched supplies ahead of<br>winter kept prices close to<br>\\$50."
8611 ],
8612 [
8613 " LONDON (Reuters) - Oil prices<br>climbed above \\$42 a barrel on<br>Wednesday, rising for the<br>third day in a row as cold<br>weather gripped the U.S.<br>Northeast, the world's biggest<br>heating fuel market."
8614 ],
8615 [
8616 "Travelers headed home for<br>Thanksgiving were greeted<br>Wednesday with snow-covered<br>highways in the Midwest, heavy<br>rain and tornadoes in parts of<br>the South, and long security<br>lines at some of the nation<br>#39;s airports."
8617 ],
8618 [
8619 "The union representing flight<br>attendants on Friday said it<br>mailed more than 5,000 strike<br>authorization ballots to its<br>members employed by US Airways<br>as both sides continued talks<br>that are expected to stretch<br>through the weekend."
8620 ],
8621 [
8622 "LOS ANGELES (CBS.MW) - The US<br>Securities and Exchange<br>Commission is probing<br>transactions between Delphi<br>Corp and EDS, which supplies<br>the automotive parts and<br>components giant with<br>technology services, Delphi<br>said late Wednesday."
8623 ],
8624 [
8625 "MONTREAL (CP) - Molson Inc.<br>and Adolph Coors Co. are<br>sweetening their brewery<br>merger plan with a special<br>dividend to Molson<br>shareholders worth \\$381<br>million."
8626 ],
8627 [
8628 "WELLINGTON: National carrier<br>Air New Zealand said yesterday<br>the Australian Competition<br>Tribunal has approved a<br>proposed alliance with Qantas<br>Airways Ltd, despite its<br>rejection in New Zealand."
8629 ],
8630 [
8631 "\"Everyone's nervous,\" Acting<br>Undersecretary of Defense<br>Michael W. Wynne warned in a<br>confidential e-mail to Air<br>Force Secretary James G. Roche<br>on July 8, 2003."
8632 ],
8633 [
8634 "Reuters - Alpharma Inc. on<br>Friday began\\selling a cheaper<br>generic version of Pfizer<br>Inc.'s #36;3\\billion a year<br>epilepsy drug Neurontin<br>without waiting for a\\court<br>ruling on Pfizer's request to<br>block the copycat medicine."
8635 ],
8636 [
8637 "Opinion: Privacy hysterics<br>bring old whine in new bottles<br>to the Internet party. The<br>desktop search beta from this<br>Web search leader doesn #39;t<br>do anything you can #39;t do<br>already."
8638 ],
8639 [
8640 "The Nordics fared well because<br>of their long-held ideals of<br>keeping corruption clamped<br>down and respect for<br>contracts, rule of law and<br>dedication to one-on-one<br>business relationships."
8641 ],
8642 [
8643 "Don't bother with the small<br>stuff. Here's what really<br>matters to your lender."
8644 ],
8645 [
8646 "UK interest rates have been<br>kept on hold at 4.75 following<br>the latest meeting of the Bank<br>of England #39;s rate-setting<br>committee."
8647 ],
8648 [
8649 "Resurgent oil prices paused<br>for breath as the United<br>States prepared to draw on its<br>emergency reserves to ease<br>supply strains caused by<br>Hurricane Ivan."
8650 ],
8651 [
8652 "President Bush, who credits<br>three years of tax relief<br>programs with helping<br>strengthen the slow economy,<br>said Saturday he would sign<br>into law the Working Families<br>Tax Relief Act to preserve tax<br>cuts."
8653 ],
8654 [
8655 "HEN investors consider the<br>bond market these days, the<br>low level of interest rates<br>should be more cause for worry<br>than for gratitude."
8656 ],
8657 [
8658 " NEW YORK (Reuters) - U.S.<br>stocks rallied on Monday after<br>software maker PeopleSoft Inc.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=PSFT.O target=/stocks/qu<br>ickinfo/fullquote\"&gt;PSFT.O&l<br>t;/A&gt; accepted a sweetened<br>\\$10.3 billion buyout by rival<br>Oracle Corp.'s &lt;A HREF=\"htt<br>p://www.investor.reuters.com/F<br>ullQuote.aspx?ticker=ORCL.O ta<br>rget=/stocks/quickinfo/fullquo<br>te\"&gt;ORCL.O&lt;/A&gt; and<br>other big deals raised<br>expectations of more<br>takeovers."
8659 ],
8660 [
8661 "The New Jersey-based Accoona<br>Corporation, an industry<br>pioneer in artificial<br>intelligence search<br>technology, announced on<br>Monday the launch of Accoona."
8662 ],
8663 [
8664 "Goldman Sachs Group Inc. on<br>Thursday said fourth-quarter<br>profit rose as its fixed-<br>income, currency and<br>commodities business soared<br>while a rebounding stock<br>market boosted investment<br>banking."
8665 ],
8666 [
8667 " NEW YORK (Reuters) - The<br>dollar rose on Monday in a<br>retracement from last week's<br>steep losses, but dealers said<br>the bias toward a weaker<br>greenback remained intact."
8668 ],
8669 [
8670 "Moscow - Russia plans to<br>combine Gazprom, the world<br>#39;s biggest natural gas<br>producer, with state-owned oil<br>producer Rosneft, easing rules<br>for trading Gazprom shares and<br>creating a company that may<br>dominate the country #39;s<br>energy industry."
8671 ],
8672 [
8673 "Diversified manufacturer<br>Honeywell International Inc.<br>(HON.N: Quote, Profile,<br>Research) posted a rise in<br>quarterly profit as strong<br>demand for aerospace equipment<br>and automobile components"
8674 ],
8675 [
8676 "Reuters - U.S. housing starts<br>jumped a\\larger-than-expected<br>6.4 percent in October to the<br>busiest pace\\since December as<br>buyers took advantage of low<br>mortgage rates,\\a government<br>report showed on Wednesday."
8677 ],
8678 [
8679 "The Securities and Exchange<br>Commission ordered mutual<br>funds to stop paying higher<br>commissions to brokers who<br>promote the companies' funds<br>and required portfolio<br>managers to reveal investments<br>in funds they supervise."
8680 ],
8681 [
8682 "Sumitomo Mitsui Financial<br>Group (SMFG), Japans second<br>largest bank, today put<br>forward a 3,200 billion (\\$29<br>billion) takeover bid for<br>United Financial Group (UFJ),<br>the countrys fourth biggest<br>lender, in an effort to regain<br>initiative in its bidding"
8683 ],
8684 [
8685 " NEW YORK (Reuters) - U.S.<br>chain store retail sales<br>slipped during the<br>Thanksgiving holiday week, as<br>consumers took advantage of<br>discounted merchandise, a<br>retail report said on<br>Tuesday."
8686 ],
8687 [
8688 "By George Chamberlin , Daily<br>Transcript Financial<br>Correspondent. Concerns about<br>oil production leading into<br>the winter months sent shivers<br>through the stock market<br>Wednesday."
8689 ],
8690 [
8691 "Airbus has withdrawn a filing<br>that gave support for<br>Microsoft in an antitrust case<br>before the European Union<br>#39;s Court of First Instance,<br>a source close to the<br>situation said on Friday."
8692 ],
8693 [
8694 " NEW YORK (Reuters) - U.S.<br>stocks rose on Wednesday<br>lifted by a merger between<br>retailers Kmart and Sears,<br>better-than-expected earnings<br>from Hewlett-Packard and data<br>showing a slight rise in core<br>inflation."
8695 ],
8696 [
8697 "European Commission president<br>Romano Prodi has unveiled<br>proposals to loosen the<br>deficit rules under the EU<br>Stability Pact. The loosening<br>was drafted by monetary<br>affairs commissioner Joaquin<br>Almunia, who stood beside the<br>president at the announcement."
8698 ],
8699 [
8700 "Retail sales in Britain saw<br>the fastest growth in<br>September since January,<br>casting doubts on the view<br>that the economy is slowing<br>down, according to official<br>figures released Thursday."
8701 ],
8702 [
8703 " NEW YORK (Reuters) -<br>Interstate Bakeries Corp.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=IBC.N target=/stocks/qui<br>ckinfo/fullquote\"&gt;IBC.N&lt;<br>/A&gt;, maker of Hostess<br>Twinkies and Wonder Bread,<br>filed for bankruptcy on<br>Wednesday after struggling<br>with more than \\$1.3 billion<br>in debt and high costs."
8704 ],
8705 [
8706 "Delta Air Lines (DAL.N: Quote,<br>Profile, Research) on Thursday<br>said it reached a deal with<br>FedEx Express to sell eight<br>McDonnell Douglas MD11<br>aircraft and four spare<br>engines for delivery in 2004."
8707 ],
8708 [
8709 "Leading OPEC producer Saudi<br>Arabia said on Monday in<br>Vienna, Austria, that it had<br>made a renewed effort to<br>deflate record high world oil<br>prices by upping crude output<br>again."
8710 ],
8711 [
8712 "The founders of the Pilgrim<br>Baxter amp; Associates money-<br>management firm agreed<br>yesterday to personally fork<br>over \\$160 million to settle<br>charges they allowed a friend<br>to"
8713 ],
8714 [
8715 "IBM Corp. Tuesday announced<br>plans to acquire software<br>vendor Systemcorp ALG for an<br>undisclosed amount. Systemcorp<br>of Montreal makes project<br>portfolio management software<br>aimed at helping companies<br>better manage their IT<br>projects."
8716 ],
8717 [
8718 "Forbes.com - By now you<br>probably know that earnings of<br>Section 529 college savings<br>accounts are free of federal<br>tax if used for higher<br>education. But taxes are only<br>part of the problem. What if<br>your investments tank? Just<br>ask Laurence and Margo<br>Williams of Alexandria, Va. In<br>2000 they put #36;45,000 into<br>the Virginia Education Savings<br>Trust to open accounts for<br>daughters Lea, now 5, and<br>Anne, now 3. Since then their<br>investment has shrunk 5 while<br>the average private college<br>tuition has climbed 18 to<br>#36;18,300."
8719 ],
8720 [
8721 "Coca-Cola Amatil Ltd.,<br>Australia #39;s biggest soft-<br>drink maker, offered A\\$500<br>million (\\$382 million) in<br>cash and stock for fruit<br>canner SPC Ardmona Ltd."
8722 ],
8723 [
8724 "US technology shares tumbled<br>on Friday after technology<br>bellwether Intel Corp.<br>(INTC.O: Quote, Profile,<br>Research) slashed its revenue<br>forecast, but blue chips were<br>only moderately lower as drug<br>and industrial stocks made<br>solid gains."
8725 ],
8726 [
8727 " WASHINGTON (Reuters) - Final<br>U.S. government tests on an<br>animal suspected of having mad<br>cow disease were not yet<br>complete, the U.S. Agriculture<br>Department said, with no<br>announcement on the results<br>expected on Monday."
8728 ],
8729 [
8730 "Metro, Germany's biggest<br>retailer, turns in weaker-<br>than-expected profits as sales<br>at its core supermarkets<br>division dip lower."
8731 ],
8732 [
8733 "BOSTON (CBS.MW) -- First<br>Command has reached a \\$12<br>million settlement with<br>federal regulators for making<br>misleading statements and<br>omitting important information<br>when selling mutual funds to<br>US military personnel."
8734 ],
8735 [
8736 "The federal government, banks<br>and aircraft lenders are<br>putting the clamps on<br>airlines, particularly those<br>operating under bankruptcy<br>protection."
8737 ],
8738 [
8739 "EURO DISNEY, the financially<br>crippled French theme park<br>operator, has admitted that<br>its annual losses more than<br>doubled last financial year as<br>it was hit by a surge in<br>costs."
8740 ],
8741 [
8742 "WASHINGTON The idea of a no-<br>bid contract for maintaining<br>airport security equipment has<br>turned into a non-starter for<br>the Transportation Security<br>Administration."
8743 ],
8744 [
8745 "Eyetech (EYET:Nasdaq - news -<br>research) did not open for<br>trading Friday because a Food<br>and Drug Administration<br>advisory committee is meeting<br>to review the small New York-<br>based biotech #39;s<br>experimental eye disease drug."
8746 ],
8747 [
8748 "On September 13, 2001, most<br>Americans were still reeling<br>from the shock of the<br>terrorist attacks on New York<br>and the Pentagon two days<br>before."
8749 ],
8750 [
8751 "Domestic air travelers could<br>be surfing the Web by 2006<br>with government-approved<br>technology that allows people<br>access to high-speed Internet<br>connections while they fly."
8752 ],
8753 [
8754 "GENEVA: Cross-border<br>investment is set to bounce in<br>2004 after three years of deep<br>decline, re