Regular express for <p>, <ul> and <ol> tags

S

Shahid

Hi,
I am parsing an .HTML file that contains following example code:
<div>
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left"><span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Normal Text Arial 12
Black before bullets.</span></p>
<ul>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">Bullet1: If you want to convert bitmap
images Single Line.</span></li>

<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">Bullet2: D you want to convert </
span><span style="font-weight:bold;font-size:13pt;font-family:'Times
New Roman';color:#ff0000" xml:lang="en-US" lang="en-US">Times New
Roman Bold Red 13</span><span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US"> like BMP, JPG?</span></
li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet3 bold:</
span><span style="font-size:12pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US"> If you want to convert bitmap images like BMP, JPG</
span></li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet4 bold 14: </
span><span style="font-size:14pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US">If you want to convert bitmap images like BMP, JPG 2
lines.</span></li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">Bullet4
bold 14 all Red: </span><span style="font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">If you
want to convert bitmap images like BMP, JPG.</span></li>

<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet4 bold 14 Black: </
span><span style="font-size:14pt;font-family:'Arial';color:#0000ff"
xml:lang="en-US" lang="en-US">Blue If you want to convert bitmap. </
span><span style="font-size:16pt;font-family:'Arial';color:#008000"
xml:lang="en-US" lang="en-US">Green 16 images like BMP, JPG.</span>
</li>
</ul>
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left"><span style="font-size:14pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">Normal
Text Red Arial 14 after bullets.</span></p>
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left;margin-left:0.2500in"><span
style="font-weight:bold;font-size:14pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">&nbsp;</span></p>
<p dir="ltr" style="text-align:left"></p>
<p></p>
</div>

I am trying to parse all the <p>, <ol> and <ul> tags but couldn't
succeed yet.
I am trying following Regular Expression(RE):
"(<[pP][^>]*>(.*)</[pP]>)|(<[oO][lL][^>]+>(.*)</[oO][lL]>)|(<[uU][lL]
[^>]+>(.*)</[uU][lL]>)"

I am using preg_match_all(). Remember I am working in PHP.
If any one can help me, I will be very grateful to him/her. I need its
solution urgent.
 
P

Peter Makholm

Shahid said:
I am trying to parse all the <p>, <ol> and <ul> tags but couldn't
succeed yet.
I am trying following Regular Expression(RE):
"(<[pP][^>]*>(.*)</[pP]>)|(<[oO][lL][^>]+>(.*)</[oO][lL]>)|(<[uU][lL]
[^>]+>(.*)</[uU][lL]>)"

Regular expressions is in general not the right tool to hadle xml and
other xml-like data formats. You should us a module that parses the
HTML correctly instead. HTML::TreeBuilder is one possibility.
I am using preg_match_all(). Remember I am working in PHP.

Then you shouldn't use an perl group for you question. but even PHP
should have better tools to parse HTML than regular
expressionsm. Asking in a PHP forum should tell you which tools this
is.

//Makholm
 
J

Jürgen Exner

Shahid said:
I am parsing an .HTML file that contains following example code: [snip]
I am trying to parse all the <p>, <ol> and <ul> tags but couldn't
succeed yet.
I am trying following Regular Expression(RE):
"(<[pP][^>]*>(.*)</[pP]>)|(<[oO][lL][^>]+>(.*)</[oO][lL]>)|(<[uU][lL]
[^>]+>(.*)</[uU][lL]>)"

HTML is not a regular language! While the extensions to Perl's RE
language might be powerful enough to cover HTML, no sane person would
even try to do so. If you want to parse HTML then use a proper HTML
parser. There are several on CPAN.
I am using preg_match_all().

Undefined subroutine &main::preg_match_all called at [...]
Remember I am working in PHP.

You must have walked into the wrong room. This here is about Perl. Of
course, I suppose PHP's REs are not even as powerful as Perl's, so
probably trying to parse HTML using PHP's REs is even worse than using
Perl's REs.
If any one can help me, I will be very grateful to him/her. I need its
solution urgent.

Use a parser, dude.

jue
 
S

sln

Shahid said:
I am parsing an .HTML file that contains following example code: [snip]
I am trying to parse all the <p>, <ol> and <ul> tags but couldn't
succeed yet.
I am trying following Regular Expression(RE):
"(<[pP][^>]*>(.*)</[pP]>)|(<[oO][lL][^>]+>(.*)</[oO][lL]>)|(<[uU][lL]
[^>]+>(.*)</[uU][lL]>)"

HTML is not a regular language!

Not only not a real language, Html is not a regular expression.
While the extensions to Perl's RE
language might be powerful enough to cover HTML

That power is not needed, nor ever was
, no sane person would
even try to do so.

I guess I'm not sane then
If you want to parse HTML then use a proper HTML
parser. There are several on CPAN.
But do they use Perl independent regular expressions, or a system dependent
C library?
I am using preg_match_all().

Undefined subroutine &main::preg_match_all called at [...]
Remember I am working in PHP.

You must have walked into the wrong room. This here is about Perl. Of
course, I suppose PHP's REs are not even as powerful as Perl's, so
probably trying to parse HTML using PHP's REs is even worse than using
Perl's REs.

I agree, well don't know actually what php's rx engine can do. I'm sure it
can, in fact, I'm positive it can parse not only html, but any markup that exists.
Because, fact is, it's very very simple.
Use a parser, dude.

jue

Dude,

Parsing Markup is considered to be the easiest thing in the world.
It was the first design goal. Without the ability to peel off the first layer,
markup, it is not even possible to get to the sub-layers.

This is what the OP was asking. Not if it was too hard.

Releasing RxParse 2.0 in a day or two. Not just a parser anymore.

sln
 
S

sln

Shahid said:
I am trying to parse all the <p>, <ol> and <ul> tags but couldn't
succeed yet.
I am trying following Regular Expression(RE):
"(<[pP][^>]*>(.*)</[pP]>)|(<[oO][lL][^>]+>(.*)</[oO][lL]>)|(<[uU][lL]
[^>]+>(.*)</[uU][lL]>)"

Regular expressions is in general not the right tool to hadle xml and
other xml-like data formats. You should us a module that parses the
HTML correctly instead. HTML::TreeBuilder is one possibility.
This is hillarious since the w3c uses regular expression notation to detail the formal
specifications for html and xml.
Then you shouldn't use an perl group for you question. but even PHP
should have better tools to parse HTML than regular
expressionsm.

Wrong! There is no better markup syntax parser than regular expressions, none!
Asking in a PHP forum should tell you which tools this
is.

//Makholm
Demigod!

Part of the RxParse 2.0 engine code being released in a day or 2, it parses anything.
Parsing is the easy part, adding tools is something else. I'm just adjusting parameters now.

%Dflth = (
'hparsestart' => \&dflt_parsestart,
'hparseend' => \&dflt_parseend,
'hstart' => \&dflt_start,
'hend' => \&dflt_end,
'hchar' => \&dflt_char,
'hcdata' => \&dflt_cdata,
'hcomment' => \&dflt_comment,
'hattlist' => \&dflt_attlist,
'hentity' => \&dflt_entity,
'hdoctype' => \&dflt_doctype,
'helement' => \&dflt_element,
'hxmldecl' => \&dflt_xmldecl,
'hproc' => \&dflt_proc,
'herror' => \&dflt_error,
'hcopy' => \&dflt_copy,
);
@UC_Nstart = (
"\\x{C0}-\\x{D6}",
"\\x{D8}-\\x{F6}",
"\\x{F8}-\\x{2FF}",
"\\x{370}-\\x{37D}",
"\\x{37F}-\\x{1FFF}",
"\\x{200C}-\\x{200D}",
"\\x{2070}-\\x{218F}",
"\\x{2C00}-\\x{2FEF}",
"\\x{3001}-\\x{D7FF}",
"\\x{F900}-\\x{FDCF}",
"\\x{FDF0}-\\x{FFFD}",
"\\x{10000}-\\x{EFFFF}",
);
@UC_Nchar = (
"\\x{B7}",
"\\x{0300}-\\x{036F}",
"\\x{203F}-\\x{2040}",
);
$Nstrt = "[A-Za-z_:".join ('',@UC_Nstart)."]";
$Nchar = "[-\\w:\\.".join ('',@UC_Nchar).join ('',@UC_Nstart)."]";
$Name = "(?:$Nstrt$Nchar*?)";
#die "$Name\n";


## v2 parse regex:
## -------------------------------------------------
$RxParseXP1 =
qr/(?:<(?:(?:(\/*)($Name)\s*(\/*))|(?:($Name+)(\s+(?:(?:(?:".*?")|(?:'.*?'))|(?:[^>]*?))+)\s*(\/?))|(?:\?(.*?)\?)|(?:!(?:(?:DOCTYPE(.*?))|(?:\[CDATA\[(.*?)\]\])|(?:--(.*?)--)|(?:ATTLIST(.*?))|(?:ENTITY(.*?))|(?:ELEMENT(.*?)))))>)|(.+?)/s;
# ( <( ( 1 12 2 3 3)|( 4 45 ( ( ( )|( ))|( )) 5 6 6)|( 7 7 )|( !( ( 8 8)|( 9 9 )|( 0 0 )|(
1 1)|( 2 2)|( 3 3))))>)|4 4

$RxAttr = qr/^\s+(?:(?:($Name)\s*=\s*("|'|))|($Name+))/;

$RxAttr_DL1 = qr/^(?:([^'&<]*?)|([^'<]*?))'/;
$RxAttr_DL2 = qr/^(?:([^"&<]*?)|([^"<]*?))"/;
$RxAttr_DL3 = qr/^([^"'=<\s]+)/;
$RxAttr_RM = qr/[^\s\n]+/;

$RxPi = qr/^($Name)\s+(.*?)$/s;
 
J

Jürgen Exner

Not only not a real language, Html is not a regular expression.

I have absolutely no idea what what you mean by this. Not only is "real"
not well defined but why would snybody even think about a language
("HyperText Markup _LANGUAGE_") being an expression?

Do you even know what a regular language is and what properties are
associated with being a regular language resp. what properties are
assiciated with _NOT_ being a regular language?
That power is not needed, nor ever was

Oh, that answers that question. Obviously you are unaware that only
regular languages can be parsed by (ordinary) regular expressions which
have the same expressiveness as regular grammars and finite automatons.

To parse context-sensitive languages you need at least a
non-deterministic pushdown automaton which in turn cannot be described
using regular expressions.

If you don't believe me then please re-read your books about Theory of
Programming Languages, chapter The Chomsky Hierarchy.

Now, Perl's REs are far more powerful than ordinary regular expressions,
so they might be powerful enough to parse context-sensitive languages.
But it's still a stupid thing to do. A simple parser is far easier to
write and to maintain than a gigantic mess of REs.
I guess I'm not sane then

That's your call, not mine.
But do they use Perl independent regular expressions, or a system dependent
C library?

What does it matter? They parse HTML and thus solve the task at hand.
Correctly!
I agree, well don't know actually what php's rx engine can do. I'm sure it
can, in fact, I'm positive it can parse not only html, but any markup that exists.
Because, fact is, it's very very simple.

Oh, then by all means, please publish your findings. Contradicting
Chomsky is worth at least a Ph.D.

jue
 
T

Tad J McClellan

Not only not a real language,


He did not say real language.

He said regular language.

http://en.wikipedia.org/wiki/Regular_language

That power is not needed,


But it is. It has been mathematically proven to be needed.

If a parser can accept a context-free language (eg. HTML) then
the parser is not "regular".

I guess I'm not sane then


You just don't know enough about language theory to be taken seriously.

Should you choose to remedy that, you could start with:

http://en.wikipedia.org/wiki/Chomsky_hierarchy#The_hierarchy

If you should really want to sling the lingo believably, then
continue with the "Dragon book".
 
S

sln

He did not say real language.

He said regular language.

http://en.wikipedia.org/wiki/Regular_language




But it is. It has been mathematically proven to be needed.

If a parser can accept a context-free language (eg. HTML) then
the parser is not "regular".




You just don't know enough about language theory to be taken seriously.

Should you choose to remedy that, you could start with:

http://en.wikipedia.org/wiki/Chomsky_hierarchy#The_hierarchy

If you should really want to sling the lingo believably, then
continue with the "Dragon book".

My friends would call you an "utter, and complete idiot", but I won't.
I'm releasing a version 2 of my stuff. And its loaded. You would have
to write Perl interface just to simplify all the low level tools added.

The engine has been re-written. It does any markup. Traps errors better than,
well... better than any parser that ever was. Parsing markup is the easiest thing in
the world to do. Trapping errors isin't so easy. My Perl regular expression engine is the
best in the world, its better than C based code, much better.

You live in a fantacy world, and have no knowledge of what markup is. Only in the vaguest
sence.

Its not Parsing I am promoting, my power is in my parsing. I am promoting my tools and
nothing else.

And I have some very powerful tools I am introducing in version 2.



WHAT, YOU WANT TO PARSE HTML WITH THE SIMPLEST REGULAR EXPRESSION ???????

Simple, and stupid, and the most basic!!!!
(its all in my upcoming code to be posted right here as well as other forums)

Good luck friend. Source top, parse bottom.
I was hoping not to have to do this. There unique examples of the power in the
tools when I post version 2. Posted below is just simple regular expression.

Why do you even try to test me? What are you afraid of?

sln/aka ROBIC0

*************************************************
*************************************************
*************************************************


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<meta http-equiv="content-type" content="text-html; charset=utf-8">
<title>TENNIS.com - Message Board - Viewing a Thread - Federer and Mononucleosis</title>
<script type='text/javascript'>function updateCookie() {
sThreadViewMode = document.container.DisplayType.options[document.container.DisplayType.selectedIndex].value;
document.cookie = "ThreadViewMode=" + sThreadViewMode + "; path=/;";
NewURL = document.location.pathname + "?tid=10716&DisplayType=" + sThreadViewMode + "&setCookie=1";
window.location = NewURL;
}</script>

<link rel='stylesheet' href='/messageboard/templates/tennis/template.css' type='text/css'>

<style type='text/css'>.messagecellheader{background-image:url('/messageboard/templates/tennis/images/common/messagecellheader-background.gif');background-repeat:repeat-x; background-position:top;
height:24px;}
..messagecellfooter{background-image:url('/messageboard/templates/tennis/images/common/messagecellfooter-background.gif'); background-position: bottom; background-repeat:repeat-all; height:5px;}
..messagecellheader2{background-image:url('/messageboard/templates/tennis/images/common/messagecellheader2-background.gif'); background-position: top; background-repeat:repeat-x; height:20px;}
..messagecellheader3{background-image:url('/messageboard/templates/tennis/images/common/messagecellheader3-background.gif'); background-position: top; background-repeat:repeat-x; height:20px;}
..bbstextbox{background-position: left top; background-image:url('/messageboard/templates/tennis/images/common/cell-background.gif'); background-repeat:no-repeat; background-attachment:fixed;}
..bbseditbox{background-position: left top; background-image:url('/messageboard/templates/tennis/images/common/cell-background.gif'); background-repeat:no-repeat; background-attachment:fixed;}
..navbar{ border:1px groove #000000; background-color: #333399;FONT-SIZE: 13px;FONT-WEIGHT: bold; color:#FFFFFF; padding-left:4px; padding-right:4px; padding-top:1px;
padding-bottom:1px;background-image:url('/messageboard/templates/tennis/images/common/navbar-background.gif'); background-repeat:repeat-x;}
..logoright{background-image:url('/messageboard/templates/tennis/images/common/logo-right.gif');background-repeat:repeat-x; background-position:top; height:58px;}
</style>
<script type='text/javascript'>
<!--
function formSubmit(submitted)
{
if(submitted=="1")
{
msgform.Submit.disabled=true;
}
}
//-->
</script></head><body>


<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=988,height=597');");
}
// End -->
</script>

<!--Ad / Header --------------------------------------------------------------------------------------------------->

<table width='954' cellpadding='0' cellspacing='0' bgcolor='#175617' >
<tr>
<td>

<table width='954' cellpadding='0' cellspacing='0' bgcolor='#175617' >
<tr>
<td width='226' height='96'><a href='/index.aspx'><img src='/images/main/logo.gif' border='0'></a></td>
<td width='728' valign='top'>

<table width='728' height='90' cellpadding='0' cellspacing='0'>
<tr>
<td>
<SCRIPT>
var a = Math.floor(Math.random()*9999999999+1)
var random_number = a;
document.write('<scr' + 'ipt src=http://ad.doubleclick.net/adj/tenni...te=;chan=;kw=;dcopt=ist;sz=728x90;tile=1;ord=' +
random_number + '></scr' + 'ipt>');
</SCRIPT>

<NOSCRIPT>
<A HREF="http://ad.doubleclick.net/jump/tenn...an=;kw=;sz=728x90;tile=1;ord='+random_number+'" >
<IMG SRC="http://ad.doubleclick.net/ad/tennis...an=;kw=;sz=728x90;tile=1;ord='+random_number+'" border="0" height="90"
width="728"></A>
</NOSCRIPT>
</td>
</tr>
</table>

</td>
</tr>
</table>

<table width="954" cellpadding="0" cellspacing="0">
<tr>
<td class="top_nav" height="22" align="left">
<a href="/livescores/index.html">Live Scores</a> &nbsp;|&nbsp;
<a href="/tvschedule/tvschedule.aspx?id=67" target="_top">TV Schedule</a> &nbsp;|&nbsp;
<a href="javascript:popUp('/media/video/index.aspx')">Video</a> &nbsp;|&nbsp;
<a href="/schedule/index.aspx?id=109402">Pro Schedule</a> &nbsp;|&nbsp;
<a href="/rankings/index.aspx?id=40696">Rankings</a> &nbsp;|&nbsp;
<a href="/players/index.aspx">Players</a> &nbsp;|&nbsp;
<a href="/statistics/index.aspx">Stats</a> &nbsp;|&nbsp;
<a href="/messageboard">Message Boards</a> &nbsp;|&nbsp;
<a href="/newsletter/index.aspx">Newsletter</a>
</td>
<td class="top_nav" height="22" align="right" style="padding-right: 10px">
<a href="http://www.tennis.com/subscribe" target="_blank"><font color="#ffff00">Subscribe</font></a> &nbsp;|&nbsp;
<a href="http://www.tennisacestore.com" target="_blank"><font color="#ffff00">Store</font></a>
</td>
</tr>
</table>

</td>
</tr>
</table>

<table width='954' cellspacing='0' cellpadding='0'>
<tr>
<td bgcolor='#FFFFFF' valign='top'>

<table width="100%" cellspacing='0'>
<tr>
<td>
<table background="/images/bars/orange_bar_extended.gif" width="100%" height="39" cellpadding="0" cellspacing="0">
<tr>
<td class="section_title" height="39" valign="center">Message Boards</td>
</tr>
<tr>
<td>
<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td height='22' class='sub_menu'><a class='headerbarlink' href='/messageboard/category-view.asp'><font color='#016e02'
size='1'>Home</font></a>&nbsp;
| &nbsp;<a class='headerbarlink' href='/messageboard/search/query.asp?collapsethreads=1&action=search&amp;searchforumid=all&amp;keywords=&amp;author=&amp;days=lastlogin'><font color='#016e02'
size='1'>New Threads</font></a>&nbsp;
| &nbsp;<a class='headerbarlink' href='/messageboard/statistics/user-listing.asp'><font color='#016e02' size='1'>User Listing</font></a>&nbsp;
| &nbsp;<a class='headerbarlink' href='/messageboard/search/query.asp?collapsethreads=1'><font color='#016e02' size='1'>Search</font></a>&nbsp;
| &nbsp;<a class='headerbarlink' href='/messageboard/profile/controlpanel.asp'><font color='#016e02' size='1'>Control Panel</font></a>&nbsp;
</td><td height='22' class='sub_menu' style='padding-right: 12px' align='right'><a href='/messageboard/policy.html' target='_blank'>MESSAGE BOARD POLICY</a></td></tr></table>

</td>
</tr>
</table>
</td>
</tr>
<tr>
<td><table border='0' cellspacing='0' cellpadding='0' width='100%'>
<tr><td height='5'></td></tr><tr><td><div class='headercontrolbox'>
<span class='smalltext'>Welcome, FedRus (<a href='/messageboard/logoff.asp'>Logoff</a>).&nbsp;You have 18 messages in your <a href='/messageboard/inbox.asp'>inbox</a> (0 new). <br/>There are <a
href='/messageboard/statistics/whos-online.asp'>29 other users</a> online (6 registered, 23 guests).&nbsp;</span></div></td></tr><tr><td height='5'></td></tr></table>
<table align='center' width='100%'><tr><td><span class='header4'>Federer and Mononucleosis</span><br/>Jump to page : <a class='threadlink' href='thread-view.asp?tid=10716&amp;start=1'>1</a> <a
class='threadlink' href='thread-view.asp?tid=10716&amp;start=26'>2</a> <a class='threadlink' href='thread-view.asp?tid=10716&amp;start=51&amp;posts=56'>3</a> <br/>Now viewing page 1 [25 messages per
page]</td><td class='smalltext' align='right' valign='bottom'><a href='/messageboard/forums/thread-skip.asp?tid=10716&amp;m=1'>View previous thread</a> :: <a
href='/messageboard/forums/thread-skip.asp?tid=10716&amp;m=2'>View next thread</a></td></tr><tr><td nowrap align='left' valign='bottom'><a
href='thread-post.asp?action=reply&amp;fid=2&amp;tid=10716&amp;replyto=143498&amp;displaytype=flat'><img alt='Reply' src='/messageboard/templates/tennis/images/common/localized/reply-button.gif'
border='0'></a> <a href='thread-post.asp?action=writenew&amp;fid=2&amp;tid=10716&amp;replyto=143498&amp;displaytype=flat'><img alt='New post'
src='/messageboard/templates/tennis/images/common/localized/new-post-button.gif' border='0'></a> &nbsp;&nbsp;&nbsp;<a href='/messageboard/category-view.asp?showall=true'>Pro Game</a> -> <a
href='forum-view.asp?fid=2'>ATP Tour</a></tr></table><form method='post' action='/messageboard/pollbooth/castvote.asp'><input type='hidden' name='redirect'
value='/messageboard/forums/thread-view.asp?tid=10716&posts=56&start=1'><input type='hidden' name='pollid' value='734'><input type='hidden' name='action' value='vote'><table class='bbstable'
width='95%' align='center' cellspacing='1'><tr><td colspan='2' class='messagecellheader'>Federer and Mononucleosis</td></tr><tr><td class='messagecellheader2'>Option</td><td
class='messagecellheader2'>Results</td></tr><tr><td class='messagecellbody'><input type='radio' class='bbsradiobox' value='3892' name='optionid'>He had Mono but is SUPERMAN and so can still make
finals of slams</td><td nowrap width='35%' class='messagecellbody' align='left'>51 Votes - [67.11%]<br/><img src='/messageboard/templates/tennis/images/common/poll-left.gif' alt=''><img
src='/messageboard/templates/tennis/images/common/poll-center.gif' width='201' height='11' alt=''><img src='/messageboard/templates/tennis/images/common/poll-right.gif' alt=''></td></tr><tr><td
class='messagecellbody'><input type='radio' class='bbsradiobox' value='3893' name='optionid'>He never had mono</td><td nowrap width='35%' class='messagecellbody' align='left'>11 Votes -
[14.47%]<br/><img src='/messageboard/templates/tennis/images/common/poll-left.gif' alt=''><img src='/messageboard/templates/tennis/images/common/poll-center.gif' width='43' height='11' alt=''><img
src='/messageboard/templates/tennis/images/common/poll-right.gif' alt=''></td></tr><tr><td class='messagecellbody'><input type='radio' class='bbsradiobox' value='3894' name='optionid'>He had mono but
it was very mild</td><td nowrap width='35%' class='messagecellbody' align='left'>13 Votes - [17.11%]<br/><img src='/messageboard/templates/tennis/images/common/poll-left.gif' alt=''><img
src='/messageboard/templates/tennis/images/common/poll-center.gif' width='51' height='11' alt=''><img src='/messageboard/templates/tennis/images/common/poll-right.gif' alt=''></td></tr><tr><td
class='messagecellbody'><input type='radio' class='bbsradiobox' value='3895' name='optionid'>He had mono years ago, and got diagnosed in 08</td><td nowrap width='35%' class='messagecellbody'
align='left'>0 Votes - [0%]<br/><img src='/messageboard/templates/tennis/images/common/poll-left.gif' alt=''><img src='/messageboard/templates/tennis/images/common/poll-center.gif' width='0'
height='11' alt=''><img src='/messageboard/templates/tennis/images/common/poll-right.gif' alt=''></td></tr><tr><td class='messagecellbody'><input type='radio' class='bbsradiobox' value='3896'
name='optionid'>It's all a lie</td><td nowrap width='35%' class='messagecellbody' align='left'>1 Votes - [1.32%]<br/><img src='/messageboard/templates/tennis/images/common/poll-left.gif'
alt=''><img src='/messageboard/templates/tennis/images/common/poll-center.gif' width='4' height='11' alt=''><img src='/messageboard/templates/tennis/images/common/poll-right.gif'
alt=''></td></tr><tr><td colspan='2' class='messagecellbody' align='right'></td></tr><tr><td class='messagecellfooter' colspan='2' align='center'><input class='bbsbutton' type='submit'
value='Submit'></td></tr></table></form><br/><table align='center' width='100%' class='bbstable' cellspacing='1'><tr><td colspan='2' class='messagecellheader'> </td></tr><tr><td
class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=457'>MikeOne</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120' alt=''></td><td
class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143498'></a><img src='/messageboard/templates/tennis/images/common/nav-messages-new.gif'
alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:16 AM (#143498) <br/><b>Subject:</b> Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a
href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143498&amp;quote=yes'><img align='middle' src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif'
alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143498'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143498'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>Grand Slam Champion<br/><br/>Posts: 3772<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br>We all know he claims he was diagnosed with mononucleosis and he claims was a factor early in the year. I have questions. <br/>
<br/>
1. Why did he say that he has had mono since 2006? What does this mean? <br/>
<br/>
2. Why did he say he felt 100% and was feeling so great in the first few rounds when he was killing everyone at AO? IF HE WAS ILL? <br/>
<br/>
3. Why did Santoro say "he's moving better than ever and playing better than ever" after he lost to Roger at AO if Roger was ILL? <br/>
<br/>
4. Why did Federer ONLY suffer effects of Mono after he got taken to 5 sets by Tipseravic and later beaten by Djokovic but not when he won his first few matches where he stated he was at 100%? Is this
a case of "When i win, i'm 100% but if i lose, i will use mono as an excuse??" <br/>
<br/>
5. We all see how Ancic has been affected by Mono, the guy has had to stop playing tennis for a long time but Federer is able to play 5 set battle against Tipseravic and then, right after the match,
go work out? and then come back and win his next two matches in straight sets? How can a guy with mono be able to do this? <br/>
<br/>
6. He then suffers a few losses, after losing to Novak and 'mono' is the excuse again. Why can't it just be a confidence thing after losing to Novak? Can Roger never run into a mental slump? just
physical ones? <br/>
<br/>
7. He then all off sudden, AS I FORETOLD, gets it together for clay court season and is remarkably at 100% just in time for FO? He made finals of Rome, Hamburg and finals of FO... on clay, where
points are longest. So, he just happened to get better just in time for clay court season? Or this is simply a case of Roger losing earlier, cause he lost confidence, and then getting motivated for FO
and kicking butt? proving he never really was affected by Mono? <br/>
<br/>
8. He then played what could've been his best tennis ever at Wimbledon, breezing through all his matches leading into final, but then lost in finals and 'mono' talks resumed. So he's at 100% until
final ad then 'mono' creeps up? <br/>
<br/>
<br/>
so many good questions above, and below here is a poll to see what you guys think<br/><br/><span class='smalltext'>Edited by MikeOne 9/11/2008 10:23 AM</span><br/>
<br/>-----<br/>Mike's compilation of gems: <br/>
<br/>
Tennis2006: "Hewitt better than Agassi" <br/>
TheLogo: "Karlovic would EASILY have been a dominant force in 90s" <br/>
FedRus: "Sampras was the most ill player I'd ever seen. His tongue licking-between teeth on closeups made me puke if I was eating. ABSOLUTELY THE MOST DISCUSTING HUMAN BEING ON THE TENNIS PLANTED
BACK THEN !!!!!!!!!!!" <br/>
OOCC: "A service winner can only be an ace" <br/>
cyBorg: "Sampras is 9th in GOAT list" <br/>
Huntingyou: "Federer would beat Sampras at Wimbledon 1,1,1, and i'm being nice" * <br/>
<br/>
* Pete at 36 <br/>
<br/>
<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=457'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=457'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=2745'>Pete</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143506'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:32 AM (#143506 - in reply to #143498) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143506&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143506'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143506'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://rhein-zeitung.de/on/96/11/25/sport/news/sampras1.jpg'><br/>Legend<br/><br/>Posts: 5063<br/><br>Location: At the net.... where else would I be???<br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
We all know he claims he was diagnosed with mononucleosis and he claims was a factor early in the year. I have questions.</div> <br/>
<br/>
The Greg Maddux of posters once again with highly inteelectual qustions fo the masses..... <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
1. Why did he say that he has had mono since 2006? What does this mean?</div> <br/>
<br/>
Yes what does it mean??? Enlighten us federphiles. <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
2. Why did he say he felt 100% and was feeling so great in the first few rounds when he was killing everyone at AO? </div> <br/>
<br/>
Another great question. Anyone???? <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
3. Why did Santoro say "he's moving better than ever and playing better than ever" after he lost to Roger at AO if Roger was ILL?</div> <br/>
<br/>
Yes Tennis2006 why???? <br/>
<a href="http://tennis.com/messageboard/foru...t=1&highlight=santoro+federer&highlightmode=1" target="_blank"
title="http://tennis.com/messageboard/foru...t=1&highlight=santoro+federer&highlightmode=1">http://tennis.com/messageboard/forums/thread-view.asp?tid=6042&star...</a>
<br/>
<br/>
You did post this did you not???? <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
4. Why did Federer ONLY suffer effects of Mono after he got taken to 5 sets by Tipseravic and later beaten by Djokovic but not when he won his first few matches where he stated he was at 100%? Is this
a case of "When i win, i'm 100% but if i lose, i will use mono as an excuse??"</div> <br/>
<br/>
Again... Federphiles???? <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
5. We all see how Ancic has been affected by Mono, the guy has had to stop playing tennis for a long time but Federer is able to play 5 set battle against Tipseravic and the right after the match, go
work out? and then come back and win his next two matches in straight sets? How can a guy with mono be able to do this?</div> <br/>
<br/>
Yes how can he???? Inquiring minds would like to know. <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
6. He then suffers a few losses, after losing to Novak and 'mono' is the excuse again. Why can't it just be a confidence thing after losing to Novak?</div> <br/>
<br/>
Why can't it??? Federphiles???? <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
7. He then all off sudden, AS I FORETOLD, gets it together for clay court season and is remarkably at 100% just in time for FO? He made finals of Rome, Hamburg and finals of FO... on clay, where
points ar slowest. So, he just happened to get better just in time for clay court season? Or this simply a case of Roger losing earlier, cause he lost confidence, and then getting motivated for FO and
kicking butt? proving he never really as affected by Mono?</div> <br/>
<br/>
Wasn't he constantly going up a break and the double breaks vs Nadal??? So the mono only kicked in after he lost the leads???? <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
8. He then is playing his best tennis ever at Wimbledon, breezing through all his matches leading into final, but then loses and 'mono' talks resume. So he's at 100% until final ad then 'mono' creeps
up?</div> <br/>
<br/>
Yes how did Fed get to the final only dropping a set along the way, while only getting broken twice??? <br/>
<br/>
<div class="quotation">MikeOne - 9/11/2008 2:16 PM <br/>
so many good questions above, and below here is a poll to see what you guys think <br/>
</div> <br/>
<br/>
So many good questions. But as usal, such nonsensical answers, if you get any at all.<br/>-----<br/>"Pete is the greatest player ever. I'd even put him ahead of myself" -Rod Laver<b></b>(mid 90's and
reitterated in 2000<b></b>) <br/>
<br/>
"Sure, it's disappointing he didn't win the French Open but you cannot deny he is the best ever... Rod Laver says he is the best ever.... and if he says Pete's the best, then he is the best." -Billie
Jean King<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=2745'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=2745'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3534'>kowarrior</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143511'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:32 AM (#143511 - in reply to #143498) <br/><b>Subject:</b> Re:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143511&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143511'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143511'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>ATP-Level Main Draw<br/><br/>Posts: 2402<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br>LOL! Why don't you ask Federer's doctor?<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0'
cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=3534'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile'
border='0'></a> <a href='/messageboard/send-private-message.asp?uid=3534'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a>
</td><td align='right'> <a href='#top'><img src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=2745'>Pete</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143513'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:39 AM (#143513 - in reply to #143511) <br/><b>Subject:</b> Re:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143513&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143513'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143513'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://rhein-zeitung.de/on/96/11/25/sport/news/sampras1.jpg'><br/>Legend<br/><br/>Posts: 5063<br/><br>Location: At the net.... where else would I be???<br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">kowarrior - 9/11/2008 2:32 PM <br/>
<br/>
LOL! Why don't you ask Federer's doctor?</div> <br/>
<br/>
You mean the one who diagnsed the recurring version that kept creeping up after losses??? <img align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'> <img
align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_giggle.gif'> <img align='middle'
src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'><br/>-----<br/>"Pete is the greatest player ever. I'd even put him ahead of myself" -Rod Laver<b></b>(mid 90's and reitterated in
2000<b></b>) <br/>
<br/>
"Sure, it's disappointing he didn't win the French Open but you cannot deny he is the best ever... Rod Laver says he is the best ever.... and if he says Pete's the best, then he is the best." -Billie
Jean King<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=2745'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=2745'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=4934'>Kieran</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143514'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:40 AM (#143514 - in reply to #143498) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143514&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143514'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143514'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://antiquetennis.com/mediac/400_0/media/streamline.JPG'><br/>Challenger Qualifier<br/><br/>Posts: 615<br/><br>Location: A yard inside the baseline...<br><br></span></td><td valign='top'
class='messagemiddle'><br>Mikeone, you beat me to it! I was gonna run a "did he, didn't he?" poll on this because, frankly, I believe it's all baloney. A dress rehearsal for his decline. <br/>
<br/>
I don't blame the guy for feeling pressure of being number one, as he said himself, he had a monster on his back. But why didn't he just fess up? Why not simply come clean and place his own
victories in context so that then we could all agree, he been winning a lot but it could never last so long as Rafa was going to peak...followed by Novak and maybe some others? <br/>
<br/>
Mono? <br/>
<br/>
No no!<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=4934'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=4934'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=2948'>SAMPRAS_fan</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143516'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:43 AM (#143516 - in reply to #143498) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143516&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143516'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143516'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>Legend<br/><br/>Posts: 7986<br/><br><br><br></span></td><td valign='top' class='messagemiddle'><br>FEDERER
NOW declares that "I am actually FEELING MUCH BETTER NOW at 27 than i EVER did in my career"............ <br/>
<br/>
<br/>
uhmm...<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=2948'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=2948'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=2948'>SAMPRAS_fan</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143518'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:44 AM (#143518 - in reply to #143498) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143518&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143518'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143518'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>Legend<br/><br/>Posts: 7986<br/><br><br><br></span></td><td valign='top' class='messagemiddle'><br>and this
roger has the gall to laugh along with Roddick concerning NOVAK"S medical time outs..........<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap
class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=2948'><img
src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=2948'><img
src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://' target='_blank'><img
src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3534'>kowarrior</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143519'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:46 AM (#143519 - in reply to #143514) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143519&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143519'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143519'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>ATP-Level Main Draw<br/><br/>Posts: 2402<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">Kieran - 9/11/2008 1:40 PM <br/>
<br/>
Mikeone, you beat me to it! I was gonna run a "did he, didn't he?" poll on this because, frankly, I believe it's all baloney. A dress rehearsal for his decline. <br/>
<br/>
I don't blame the guy for feeling pressure of being number one, as he said himself, he had a monster on his back. But why didn't he just fess up? Why not simply come clean and place his own
victories in context so that then we could all agree, he been winning a lot but it could never last so long as Rafa was going to peak...followed by Novak and maybe some others? <br/>
<br/>
Mono? <br/>
<br/>
No no!</div> <br/>
<br/>
It's what YOU believe. But until you PROVE that he didn't have mononucleosis or traces of it in his system, then your posts and all these threads relating to the subject are pure baloney! <br/>
Prove it first. That's what I ask of you. Prove that he didn't have mono. THEN you can post as many laughing and smiling emotion icons as you please and I'll do the same.<br><br></td><tr><td
class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=3534'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=3534'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> </td><td
align='right'> <a href='#top'><img src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=4934'>Kieran</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143520'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:51 AM (#143520 - in reply to #143518) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143520&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143520'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143520'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://antiquetennis.com/mediac/400_0/media/streamline.JPG'><br/>Challenger Qualifier<br/><br/>Posts: 615<br/><br>Location: A yard inside the baseline...<br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">SAMPRAS_fan - 9/11/2008 7:44 PM <br/>
<br/>
and this roger has the gall to laugh along with Roddick concerning NOVAK"S medical time outs..........</div> <br/>
<br/>
Yeah, I thought THAT was a bit catty, like a gossip queen smarming over a prom queens smudged lippy. <br/>
<br/>
Fact is, Wodger must detest Ancic round about now, cos po' Mario has it bad and a potentially excellent career is in ruins because of Mono, which has TERRIBLE side effects and can't be shrugged off
like a common cold. And because of Ancic we all know what Mono REALLY does. <br/>
<br/>
Ever try running off a broken leg? THAT'S Mono!<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0'
width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=4934'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=4934'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3534'>kowarrior</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143521'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:47 AM (#143521 - in reply to #143518) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143521&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143521'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143521'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>ATP-Level Main Draw<br/><br/>Posts: 2402<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">SAMPRAS_fan - 9/11/2008 1:44 PM <br/>
<br/>
and this roger has the gall to laugh along with Roddick concerning NOVAK"S medical time outs..........</div> <br/>
<br/>
Go prove he didn't have it Sampras_fan. Just because he won the USO doesn't mean he doesn't still have mono.<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap
class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=3534'><img
src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=3534'><img
src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> </td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3534'>kowarrior</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143523'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 10:48 AM (#143523 - in reply to #143520) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143523&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143523'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143523'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>ATP-Level Main Draw<br/><br/>Posts: 2402<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">Kieran - 9/11/2008 1:51 PM <br/>
<br/>
<div class="quotation">SAMPRAS_fan - 9/11/2008 7:44 PM <br/>
<br/>
and this roger has the gall to laugh along with Roddick concerning NOVAK"S medical time outs..........</div> <br/>
<br/>
Yeah, I thought THAT was a bit catty, like a gossip queen smarming over a prom queens smudged lippy. <br/>
<br/>
Fact is, Wodger must detest Ancic round about now, cos po' Mario has it bad and a potentially excellent career is in ruins because of Mono, which has TERRIBLE side effects and can't be shrugged off
like a common cold. And because of Ancic we all know what Mono REALLY does. <br/>
<br/>
Ever try running off a broken leg? THAT'S Mono!</div> <br/>
<br/>
Henin had mono too correct? She won Slams. Ancic had mono too, he played the FO and Wimbledon just fine. His condition is worse, his is recurring. Federer's case is not as bad by the looks of
it.<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=3534'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=3534'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> </td><td
align='right'> <a href='#top'><img src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3121'>MatchPt</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143536'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:03 AM (#143536 - in reply to #143498) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143536&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143536'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143536'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://www.telegraph.co.uk/telegraph/multimedia/archive/00683/ivanovich404_683447c.jpg'><br/>ATP-Level Main Draw<br/><br/>Posts: 1199<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br>As the world know Federer contracting mononucleosis<b></b>(and was well-publicized<b></b>) this year and it was affecting his game, only mikeone and Pete are in denial. <br/>
<br/>
Here's a few examples..…. <br/>
<a href="http://www.iht.com/articles/2008/03/07/sports/arena.php" target="_blank"
title="http://www.iht.com/articles/2008/03/07/sports/arena.php">http://www.iht.com/articles/2008/03/07/sports/arena.php</a> <br/>
<a href="http://www.nytimes.com/2008/03/08/sports/tennis/08tennis.html" target="_blank"
title="http://www.nytimes.com/2008/03/08/sports/tennis/08tennis.html">http://www.nytimes.com/2008/03/08/sports/tennis/08tennis.html</a> <br/>
<a href="http://www.bumeral.net/blog/2008/04...-with-mononucleosis-federer-suffered-illness/" target="_blank"
title="http://www.bumeral.net/blog/2008/04...-with-mononucleosis-federer-suffered-illness/">http://www.bumeral.net/blog/2008/04/08/roger-federer-sick-with-mono...</a> <br/>
<a href="http://sports.espn.go.com/sports/tennis/news/story?id=3282485" target="_blank"
title="http://sports.espn.go.com/sports/tennis/news/story?id=3282485">http://sports.espn.go.com/sports/tennis/news/story?id=3282485</a> <br/>
<a href="http://nbcsports.msnbc.com/id/23526713/" target="_blank" title="http://nbcsports.msnbc.com/id/23526713/">http://nbcsports.msnbc.com/id/23526713/</a> <br/>
<a href="http://sports.yahoo.com/ten/news?slug=txfederermono&prov=st&type=lgns" target="_blank"
title="http://sports.yahoo.com/ten/news?slug=txfederermono&prov=st&type=lgns">http://sports.yahoo.com/ten/news?slug=txfederermono&prov=st&type=lg...</a> <br/>
<br/>
Who should we believe? The fake god - Mikeone, Pete and S_fan? Or Federer and his doctor?<br/>-----<br/>MatchPt<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap
class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=3121'><img
src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=3121'><img
src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://' target='_blank'><img
src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=2948'>SAMPRAS_fan</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143540'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:08 AM (#143540 - in reply to #143498) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143540&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143540'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143540'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>Legend<br/><br/>Posts: 7986<br/><br><br><br></span></td><td valign='top' class='messagemiddle'><br>kowarrior
-- when DAVID NALBANDIAN is injured or ill or had his family threatened with kidnapping -- do WE DEMAND PROOF straight from his DOCTOR? <br/>
<br/>
when MONOFIED roger claims he had mono - do we DEMAND proof from HISdoctor? <br/>
<br/>
when ANCIC had mono do we DEMAND proof from HIS doctor? <br/>
<br/>
<br/>
NO <br/>
<br/>
<br/>
BUT HERE is the difference. <br/>
<br/>
<br/>
when someone CLAIMS he had mono but PLAYS like SUPERMAN before he gets BEATEN -- and CLAIMS "i am as strong as ever"......and THEN UNWRAPS his "mono" as soon as he is beaten - <br/>
<br/>
<br/>
it is NOT fodder for TRUST!<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=2948'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=2948'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=4934'>Kieran</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143541'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:12 AM (#143541 - in reply to #143498) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143541&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143541'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143541'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://antiquetennis.com/mediac/400_0/media/streamline.JPG'><br/>Challenger Qualifier<br/><br/>Posts: 615<br/><br>Location: A yard inside the baseline...<br><br></span></td><td valign='top'
class='messagemiddle'><br>Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono. <br/>
<br/>
I don't believe him. Nor do I believe his "doctor" <br/>
<br/>
He showed absolutely NO effects <b></b>(or side effects<b></b>) of Mono and missed nary a beat in his season. <br/>
<br/>
Fella felt the heat, is all. An attack of the vapours....<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0'
width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=4934'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=4934'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=2316'>tented</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143545'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:15 AM (#143545 - in reply to #143541) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143545&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143545'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143545'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>Challenger Main Draw<br/><br/>Posts: 429<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">Kieran - 9/11/2008 3:12 PM <br/>
Fella felt the heat, is all. An attack of the vapours....</div> <br/>
<br/>
<br/>
<img align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'> <img align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'> <img
align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'><br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table
cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=2316'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif'
alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=2316'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message'
border='0'></a> <a href='http://' target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a
href='#top'><img src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3121'>MatchPt</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143547'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:16 AM (#143547 - in reply to #143541) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143547&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143547'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143547'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://www.telegraph.co.uk/telegraph/multimedia/archive/00683/ivanovich404_683447c.jpg'><br/>ATP-Level Main Draw<br/><br/>Posts: 1199<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">Kieran - 9/11/2008 11:12 AM <br/>
<br/>
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono. <br/>
<br/>
I don't believe him. Nor do I believe his "doctor" <br/>
<br/>
He showed absolutely NO effects <b></b>(or side effects<b></b>) of Mono and missed nary a beat in his season. <br/>
<br/>
Fella felt the heat, is all. An attack of the vapours....</div> <br/>
<br/>
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one. <br/>
<br/>
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.<br/>-----<br/>MatchPt<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap
class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=3121'><img
src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=3121'><img
src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://' target='_blank'><img
src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3534'>kowarrior</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143549'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:17 AM (#143549 - in reply to #143540) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143549&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143549'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143549'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>ATP-Level Main Draw<br/><br/>Posts: 2402<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">SAMPRAS_fan - 9/11/2008 2:08 PM <br/>
<br/>
kowarrior -- when DAVID NALBANDIAN is injured or ill or had his family threatened with kidnapping -- do WE DEMAND PROOF straight from his DOCTOR? <br/>
<br/>
when MONOFIED roger claims he had mono - do we DEMAND proof from HISdoctor? <br/>
<br/>
when ANCIC had mono do we DEMAND proof from HIS doctor? <br/>
<br/>
<br/>
NO <br/>
<br/>
<br/>
BUT HERE is the difference. <br/>
<br/>
<br/>
when someone CLAIMS he had mono but PLAYS like SUPERMAN before he gets BEATEN -- and CLAIMS "i am as strong as ever"......and THEN UNWRAPS his "mono" as soon as he is beaten - <br/>
<br/>
<br/>
it is NOT fodder for TRUST!</div> <br/>
<br/>
Don't give me that, Sampras_fan. When Federer was losing to Gilles Simon, went life and death with Ginepri and lost to Karlovic the next day then lost to James Blake, even YOU weren't suddenly
doubting his mono. You and Kieran are doubting his mono now because he finally WON a tournament of significance. <br/>
But that still doesn't mean that his small case of mono isn't still there. If Federer had lost the USO, this thread about his mono would not have been made.<br><br></td><tr><td class='messagefooter'
style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=3534'><img
src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=3534'><img
src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> </td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=4934'>Kieran</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143551'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:22 AM (#143551 - in reply to #143547) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143551&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143551'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143551'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://antiquetennis.com/mediac/400_0/media/streamline.JPG'><br/>Challenger Qualifier<br/><br/>Posts: 615<br/><br>Location: A yard inside the baseline...<br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">MatchPt - 9/11/2008 8:16 PM <br/>
<br/>
<div class="quotation">Kieran - 9/11/2008 11:12 AM <br/>
<br/>
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono. <br/>
<br/>
I don't believe him. Nor do I believe his "doctor" <br/>
<br/>
He showed absolutely NO effects <b></b>(or side effects<b></b>) of Mono and missed nary a beat in his season. <br/>
<br/>
Fella felt the heat, is all. An attack of the vapours....</div> <br/>
<br/>
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one. <br/>
<br/>
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.</div> <br/>
<br/>
99% of people where? <br/>
<br/>
I dunno anyone who believes he had it. <br/>
<br/>
99% of people on this board? <br/>
<br/>
99% of people on www.rogerfederer.com? <br/>
<br/>
In WHAT reality are 99% of people so easily fooled? Communist China? <br/>
<br/>
Where, buddy, where? <img align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_rolleyes.gif'><br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap
class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=4934'><img
src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=4934'><img
src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://' target='_blank'><img
src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=4259'>nehmeth</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143557'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:22 AM (#143557 - in reply to #143547) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143557&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143557'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143557'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><b><img src=/messageboard/images/icon_online.gif align=left><font color=#00CC00>Online</font></b><br/><br>Challenger Main Draw<br/><br/>Posts: 2731<br/><br>Location: central
Pennsylvania<br><br></span></td><td valign='top' class='messagemiddle'><br><div class="quotation">MatchPt - 9/11/2008 2:16 PM <br/>
<br/>
<div class="quotation">Kieran - 9/11/2008 11:12 AM <br/>
<br/>
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono. <br/>
<br/>
I don't believe him. Nor do I believe his "doctor" <br/>
<br/>
He showed absolutely NO effects <b></b>(or side effects<b></b>) of Mono and missed nary a beat in his season. <br/>
<br/>
Fella felt the heat, is all. An attack of the vapours....</div> <br/>
<br/>
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one. <br/>
<br/>
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.</div> <br/>
<br/>
Where do you get 'overwhelmingly' and '99%' from? Maybe in your circle of friends the percentage is that high, but the question all year <b></b>(even among some fedfans<b></b>) at the tennis clubs on
the courts: Do you think he REALLY has mono? Some think yes, some think no and many are just not sure. Your group of friends either had the doctor's report right in front of them, or you just talk
to yourself. <img align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_wink.gif'><br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap
class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=4259'><img
src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=4259'><img
src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://' target='_blank'><img
src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=457'>MikeOne</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143558'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:24 AM (#143558 - in reply to #143551) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143558&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143558'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143558'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>Grand Slam Champion<br/><br/>Posts: 3772<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">Kieran - 9/11/2008 2:22 PM <br/>
<br/>
<div class="quotation">MatchPt - 9/11/2008 8:16 PM <br/>
<br/>
<div class="quotation">Kieran - 9/11/2008 11:12 AM <br/>
<br/>
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono. <br/>
<br/>
I don't believe him. Nor do I believe his "doctor" <br/>
<br/>
He showed absolutely NO effects <b></b>(or side effects<b></b>) of Mono and missed nary a beat in his season. <br/>
<br/>
Fella felt the heat, is all. An attack of the vapours....</div> <br/>
<br/>
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one. <br/>
<br/>
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.</div> <br/>
<br/>
99% of people where? <br/>
<br/>
I dunno anyone who believes he had it. <br/>
<br/>
99% of people on this board? <br/>
<br/>
99% of people on www.rogerfederer.com? <br/>
<br/>
In WHAT reality are 99% of people so easily fooled? Communist China? <br/>
<br/>
Where, buddy, where? :roll:</div> <br/>
<br/>
<br/>
<img align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'><br/>-----<br/>Mike's compilation of gems: <br/>
<br/>
Tennis2006: "Hewitt better than Agassi" <br/>
TheLogo: "Karlovic would EASILY have been a dominant force in 90s" <br/>
FedRus: "Sampras was the most ill player I'd ever seen. His tongue licking-between teeth on closeups made me puke if I was eating. ABSOLUTELY THE MOST DISCUSTING HUMAN BEING ON THE TENNIS PLANTED
BACK THEN !!!!!!!!!!!" <br/>
OOCC: "A service winner can only be an ace" <br/>
cyBorg: "Sampras is 9th in GOAT list" <br/>
Huntingyou: "Federer would beat Sampras at Wimbledon 1,1,1, and i'm being nice" * <br/>
<br/>
* Pete at 36 <br/>
<br/>
<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=457'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=457'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3121'>MatchPt</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143560'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:24 AM (#143560 - in reply to #143551) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143560&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143560'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143560'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br><img width='70' alt='' border='0'
src='http://www.telegraph.co.uk/telegraph/multimedia/archive/00683/ivanovich404_683447c.jpg'><br/>ATP-Level Main Draw<br/><br/>Posts: 1199<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">Kieran - 9/11/2008 11:22 AM <br/>
<br/>
<div class="quotation">MatchPt - 9/11/2008 8:16 PM <br/>
<br/>
<div class="quotation">Kieran - 9/11/2008 11:12 AM <br/>
<br/>
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono. <br/>
<br/>
I don't believe him. Nor do I believe his "doctor" <br/>
<br/>
He showed absolutely NO effects <b></b>(or side effects<b></b>) of Mono and missed nary a beat in his season. <br/>
<br/>
Fella felt the heat, is all. An attack of the vapours....</div> <br/>
<br/>
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one. <br/>
<br/>
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.</div> <br/>
<br/>
99% of people where? <br/>
<br/>
I dunno anyone who believes he had it. <br/>
<br/>
99% of people on this board? <br/>
<br/>
99% of people on www.rogerfederer.com? <br/>
<br/>
In WHAT reality are 99% of people so easily fooled? Communist China? <br/>
<br/>
Where, buddy, where? :roll:</div> <br/>
<br/>
<br/>
Given from the sources<b></b>(internet<b></b>) we can all access, I see most articles are about Federer suffering from mono. Still 99.99% of the people would believe his doctor than you<b></b>(no
hard feeling<b></b>). <br/>
<br/>
Do you see any article published about Federer's mono is a lie? <br/>
<br/>-----<br/>MatchPt<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=3121'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=3121'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=457'>MikeOne</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143567'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:34 AM (#143567 - in reply to #143549) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143567&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143567'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143567'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>Grand Slam Champion<br/><br/>Posts: 3772<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">kowarrior - 9/11/2008 2:17 PM <br/>
<br/>
<div class="quotation">SAMPRAS_fan - 9/11/2008 2:08 PM <br/>
<br/>
kowarrior -- when DAVID NALBANDIAN is injured or ill or had his family threatened with kidnapping -- do WE DEMAND PROOF straight from his DOCTOR? <br/>
<br/>
when MONOFIED roger claims he had mono - do we DEMAND proof from HISdoctor? <br/>
<br/>
when ANCIC had mono do we DEMAND proof from HIS doctor? <br/>
<br/>
<br/>
NO <br/>
<br/>
<br/>
BUT HERE is the difference. <br/>
<br/>
<br/>
when someone CLAIMS he had mono but PLAYS like SUPERMAN before he gets BEATEN -- and CLAIMS "i am as strong as ever"......and THEN UNWRAPS his "mono" as soon as he is beaten - <br/>
<br/>
<br/>
it is NOT fodder for TRUST!</div> <br/>
<br/>
Don't give me that, Sampras_fan. When Federer was losing to Gilles Simon, went life and death with Ginepri and lost to Karlovic the next day then lost to James Blake, even YOU weren't suddenly
doubting his mono. You and Kieran are doubting his mono now because he finally WON a tournament of significance. <br/>
But that still doesn't mean that his small case of mono isn't still there. If Federer had lost the USO, this thread about his mono would not have been made.</div> <br/>
<br/>
<br/>
ARE YOU KIDDING ME? <br/>
<br/>
If he had lost at USO, THE MONO thing would've been used as an excuse and it would've been a freaking joke. He wins and now he's 'healthy' <br/>
<br/>
it's laughable.. <br/>
<br/>
NO-ONE iwth Mono can play 5 set match, then right after the freaking match, go workout! and then come back and win his next two matches in straight sets. <br/>
<br/>
NO-ONE CAN DO THIS, IT IS PHYSICALLY IMPOSSIBLE! <br/>
<br/>
unless Roger Federer is SUPERMAN and immortal <br/>
<br/>
<br/>
He ran into a mental slump this year. His loss to Novak got to him. It had nothing to do with Novak. The evidence suggests it was a mental rollercoaste, no physical. <br/>
<br/>
Use your breain kowarrior. How the hell can Federer have MONO at AO, play a 5 setter, go workout, come right back and win matches.... then at clay court season, feel 100% again, just in time for FO
where he was motivated, do GREAT in clay court season, great on grass.... then after losing to Rafa, he gets Mono again... and then mono is the reason he loses to Simon? Karlovic? then at USO, mono is
gone, he wins. Then i bet if loses at Madrid or Paris or EOY masters cup, MONO AGAIN? are we gonna keep playing this freaking game for years now? LOL! <br/>
<br/>
<br/>-----<br/>Mike's compilation of gems: <br/>
<br/>
Tennis2006: "Hewitt better than Agassi" <br/>
TheLogo: "Karlovic would EASILY have been a dominant force in 90s" <br/>
FedRus: "Sampras was the most ill player I'd ever seen. His tongue licking-between teeth on closeups made me puke if I was eating. ABSOLUTELY THE MOST DISCUSTING HUMAN BEING ON THE TENNIS PLANTED
BACK THEN !!!!!!!!!!!" <br/>
OOCC: "A service winner can only be an ace" <br/>
cyBorg: "Sampras is 9th in GOAT list" <br/>
Huntingyou: "Federer would beat Sampras at Wimbledon 1,1,1, and i'm being nice" * <br/>
<br/>
* Pete at 36 <br/>
<br/>
<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=457'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=457'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3534'>kowarrior</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143569'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:38 AM (#143569 - in reply to #143567) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143569&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143569'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143569'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>ATP-Level Main Draw<br/><br/>Posts: 2402<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br><div class="quotation">MikeOne - 9/11/2008 2:34 PM <br/>
<br/>
<div class="quotation">kowarrior - 9/11/2008 2:17 PM <br/>
<br/>
<div class="quotation">SAMPRAS_fan - 9/11/2008 2:08 PM <br/>
<br/>
kowarrior -- when DAVID NALBANDIAN is injured or ill or had his family threatened with kidnapping -- do WE DEMAND PROOF straight from his DOCTOR? <br/>
<br/>
when MONOFIED roger claims he had mono - do we DEMAND proof from HISdoctor? <br/>
<br/>
when ANCIC had mono do we DEMAND proof from HIS doctor? <br/>
<br/>
<br/>
NO <br/>
<br/>
<br/>
BUT HERE is the difference. <br/>
<br/>
<br/>
when someone CLAIMS he had mono but PLAYS like SUPERMAN before he gets BEATEN -- and CLAIMS "i am as strong as ever"......and THEN UNWRAPS his "mono" as soon as he is beaten - <br/>
<br/>
<br/>
it is NOT fodder for TRUST!</div> <br/>
<br/>
Don't give me that, Sampras_fan. When Federer was losing to Gilles Simon, went life and death with Ginepri and lost to Karlovic the next day then lost to James Blake, even YOU weren't suddenly
doubting his mono. You and Kieran are doubting his mono now because he finally WON a tournament of significance. <br/>
But that still doesn't mean that his small case of mono isn't still there. If Federer had lost the USO, this thread about his mono would not have been made.</div> <br/>
<br/>
<br/>
ARE YOU KIDDING ME? <br/>
<br/>
If he had lost at USO, THE MONO thing would've been used as an excuse and it would've been a freaking joke. He wins and now he's 'healthy' <br/>
<br/>
it's laughable.. <br/>
<br/>
NO-ONE iwth Mono can play 5 set match, then right after the freaking match, go workout! and then come back and win his next two matches in straight sets. <br/>
<br/>
NO-ONE CAN DO THIS, IT IS PHYSICALLY IMPOSSIBLE! <br/>
<br/>
unless Roger Federer is SUPERMAN and immortal <br/>
<br/>
<br/>
He ran into a mental slump this year. His loss to Novak got to him. It had nothing to do with Novak. The evidence suggests it was a mental rollercoaste, no physical. <br/>
<br/>
Use your breain kowarrior. How the hell can Federer have MONO at AO, play a 5 setter, go workout, come right back and win matches.... then at clay court season, feel 100% again, just in time for FO
where he was motivated, do GREAT in clay court season, great on grass.... then after losing to Rafa, he gets Mono again... and then mono is the reason he loses to Simon? Karlovic? then at USO, mono is
gone, he wins. Then i bet if loses at Madrid or Paris or EOY masters cup, MONO AGAIN? are we gonna keep playing this freaking game for years now? LOL! <br/>
<br/>
</div> <br/>
<br/>
Oh really? I recall Ancic doing pretty damn well at Wimbledon, taking down world number 4 at the time David Ferrer in a 5 set war and still being ALIVE at the end of it. <img align='middle'
src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'><br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0'
cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=3534'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile'
border='0'></a> <a href='/messageboard/send-private-message.asp?uid=3534'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a>
</td><td align='right'> <a href='#top'><img src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=3534'>kowarrior</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143570'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:40 AM (#143570 - in reply to #143498) <br/><b>Subject:</b> Re:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143570&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143570'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143570'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>ATP-Level Main Draw<br/><br/>Posts: 2402<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br>Let's face it. NOBODY here knows what mononucleosis even is. Nobody here has had it.<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap
class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a href='/messageboard/view-profile.asp?uid=3534'><img
src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a href='/messageboard/send-private-message.asp?uid=3534'><img
src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> </td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr><tr><td class='messageheader'><b><a href='/messageboard/view-profile.asp?action=view&amp;uid=457'>MikeOne</a></b><br/><img src='/messageboard/images/spacer.gif' height='1' width='120'
alt=''></td><td class='messageheader' nowrap width='100%'><table cellpadding='0' cellspacing='0' width='100%'><tr><td><a name='M143573'></a><img
src='/messageboard/templates/tennis/images/common/nav-messages-new.gif' alt=''> <span class='smalltext'><b>Posted</b> 9/11/2008 11:42 AM (#143573 - in reply to #143498) <br/><b>Subject:</b> RE:
Federer and Mononucleosis</span></td><td align='right' class='smalltext' nowrap><a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143573&amp;quote=yes'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-replyquote.gif' alt='Quote' border='0'></a> <a href='/messageboard/forums/thread-post.asp?action=reply&amp;replyto=143573'><img
align='middle' src='/messageboard/templates/tennis/images/common/localized/message-reply.gif' alt='Reply' border='0'></a> <a href='/messageboard/forums/alert-post.asp?mid=143573'><img align='middle'
src='/messageboard/templates/tennis/images/common/localized/message-alert.gif' alt='Alert' border='0'></a> </td></tr></table></td></tr><tr><td valign='top' height='150' class='messagemiddle'><span
class='smalltext'><img src=/messageboard/images/icon_offline.gif align=left>Offline<br/><br>Grand Slam Champion<br/><br/>Posts: 3772<br/><br><br><br></span></td><td valign='top'
class='messagemiddle'><br>So, let's summarize:<br /><br /><font size="3"><strong>1. Start of year - MONO<br />2. His first 3 matches of AO - 100% HEALTHY<br />3. 5 sets to Tipseravic <b></b>(even
though he even had energy to workout afterwards<b></b>)- MONO <br />4. wins in straight sets vs Blake and Berdych - 100% HEALTHY<br />5. Loses to Novak next round - MONO<br />6. Loses to Murray, Fish,
Roddick - MONO<br />7. Wins Estoril &amp; makes final of Monte Carlo - 100% healthy<br />9. Loses to Stepanek at Rome - MONO<br />10. Makes final of Hamburg and FO - 100% HEALTHY<br />11. Gets
humiliated in finals of FO - MONO<br />12. Wins Halle - 100% HEALTHY<br />13. Makes it to finals of Wimbledon without dropping a set - 100% HEALTHY<br />14. Loses to Nadal in finals - MONO<br />15.
loses to Karlovic, Simon at Toronto and Cincy - MONO<br />16. Makes a good run at Olympics - 100% healthy<br />17. Loses to Blake - MONO<br />18. Wins first few rounds of USO easily - 100% HEALTHY<br
/>19. Goes to 5 sets vs Andreev - MONO<br />20. Beats Novak and Murray and wins USO - 100% HEALTHY<br /></strong></font><br />LOL! <img align='middle'
src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'> :lol: <img align='middle' src='http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif'> :lol: <br /><br />WHAT'S
NEXT???? I CAN'T WAIT! THE DRAMA IS SO INTENSE!<br /><br />absolutely ZERO credit is given to players like Nadal and Djokovic and NEVER, is a mental slump contemplated.. IT CAN ONLY BE MONO!<br /><br
/>Give me a FRIGGIN BREAK you clowns<br/><br/><span class='smalltext'>Edited by MikeOne 9/11/2008 11:45 AM</span><br/>
<br/>-----<br/>Mike's compilation of gems: <br/>
<br/>
Tennis2006: "Hewitt better than Agassi" <br/>
TheLogo: "Karlovic would EASILY have been a dominant force in 90s" <br/>
FedRus: "Sampras was the most ill player I'd ever seen. His tongue licking-between teeth on closeups made me puke if I was eating. ABSOLUTELY THE MOST DISCUSTING HUMAN BEING ON THE TENNIS PLANTED
BACK THEN !!!!!!!!!!!" <br/>
OOCC: "A service winner can only be an ace" <br/>
cyBorg: "Sampras is 9th in GOAT list" <br/>
Huntingyou: "Federer would beat Sampras at Wimbledon 1,1,1, and i'm being nice" * <br/>
<br/>
* Pete at 36 <br/>
<br/>
<br><br></td><tr><td class='messagefooter' style='height:20px'> </td><td nowrap class='messagefooter'><table cellpadding='0' cellspacing='0' width='100%'><tr><td nowrap><a
href='/messageboard/view-profile.asp?uid=457'><img src='/messageboard/templates/tennis/images/common/localized/profile.gif' alt='Profile' border='0'></a> <a
href='/messageboard/send-private-message.asp?uid=457'><img src='/messageboard/templates/tennis/images/common/localized/private-message.gif' alt='Private message' border='0'></a> <a href='http://'
target='_blank'><img src='/messageboard/templates/tennis/images/common/localized/homepage.gif' alt='Homepage' border='0'></a></td><td align='right'> <a href='#top'><img
src='/messageboard/templates/tennis/images/common/localized/message-top.gif' alt='Top of the page' border='0'></a> <a href='#bottom'><img
src='/messageboard/templates/tennis/images/common/localized/message-bottom.gif' alt='Bottom of the page' border='0'></a> </td></tr></table></td></tr><tr><td colspan='2' class='messagecellspacer'>
</td></tr></table><br/><br/><form name='reply' action='thread-post.asp?action=postreply' method='post'><input type='hidden' name='fid' value='2'><input type='hidden' name='tid' value='10716'><input
type='hidden' name='replyto' value='143498'><input type='hidden' name='mid' value='-1'><input type='hidden' name='emoticons' value='1'><input type='hidden' name='disablehtml' value='1'><input
type='hidden' name='filtercrlf' value='0'><input type='hidden' name='linebr' value='0'><input type='hidden' name='anonymous' value='0'><input type='hidden' name='subject' value='Re: Federer and
Mononucleosis'><table align='center' width='100%' class='bbstable' cellspacing='1'><tr><td class='messagecellheader'>Reply</td></tr><tr><td class='messagecellbody'><textarea style='width: 99%'
class='bbseditbox' rows='5' cols='75' name='messagebody'></textarea></td></tr><tr><td class='messagecellfooter' align='center'><input type='submit' value='Submit' class='bbsbutton'> <input
style='display: none' id='spellcheck' onclick='document.getElementById("wspelldiv").innerHTML = wspellid;' type='button' name='spellcheck' class='bbsbutton' value='Spellcheck'><input style='display:
none' onclick='install()' id='installspellcheck' type='button' name='installspellcheck' class='bbsbutton' value='Install Spellchecker'><div style='display: none' id='wspelldiv'></div><script
type='text/javascript'>
var wspellid="<OBJECT style='display: none' CLASSID='clsid:5220cb21-c88d-11cf-b347-00aa00a28331' BORDER='0' VSPACE='0' HSPACE='0'><PARAM NAME='LPKPath'
VALUE='/messageboard/registered/wspell.lpk'></OBJECT> <OBJECT style='display: none' onreadystatechange='runchecker()' CLASSID='clsid:245338C3-BCA3-4A2C-A7B7-53345999A8E8' ID='WSpell1'
CODEBASE='/messageboard/registered/wspellam.cab#version=5,15,0,0' WIDTH='28' HEIGHT='27' BORDER='0' VSPACE='0' HSPACE='0'><PARAM NAME='_Version' VALUE='65536'><PARAM NAME='_ExtentX' VALUE='450'><PARAM
NAME='_ExtentY' VALUE='582'><PARAM NAME='_StockProps' VALUE='16'><PARAM NAME='ShowContext' VALUE='-1'><PARAM NAME='CatchMixedCaseWords' VALUE='0'><PARAM NAME='IgnoreAllCapsWords' VALUE='0'><PARAM
NAME='IgnoreCapitalizedWords' VALUE='0'><PARAM NAME='IgnoreHTMLMarkups' VALUE='1'><PARAM NAME='IgnoreMixedCaseWords' VALUE='0'><PARAM NAME='IgnoreWordsWithDigits' VALUE='0'><PARAM
NAME='MainDictionaryFiles' VALUE='ssceam.tlx,ssceam2.clx'><PARAM NAME='MinSuggestionDepth' VALUE='40'><PARAM NAME='PhoneticSuggestions' VALUE='0'><PARAM NAME='SplitContractedWords' VALUE='0'><PARAM
NAME='SplitWords' VALUE='0'><PARAM NAME='SuggestionScoreRange' VALUE='50'><PARAM NAME='UserDictionaryFiles' VALUE='userdic.tlx'> <param name='Text' value> <param name='ShowDialog' value='1'> <param
name='DialogLeft' value='-1'> <param name='DialogTop' value='-1'> <param name='ShowDictionariesButton' value='1'> <param name='ShowOptionsButton' value='1'> <param name='AllowAccentedCaps' value='1'>
<param name='AutoCorrect' value='1'> <param name='BackupUserDictionary' value='0'> <param name='CaseSensitive' value='1'> <param name='CatchDoubledWords' value='1'> <param name='CatchWordsWithDigits'
value='0'> <param name='CharacterSet' value='1'> <param name='IgnoreDomainNames' value='0'> <param name='IgnoreNonAlphaWords' value='1'> <param name='MaxSuggestions' value='16'> <param
name='MinSuggestionScore' value='50'> <param name='SplitHyphenatedWords' value='1'> <param name='StripPossessives' value='1'> <param name='SuggestionDepthIncrement' value='10'> <param
name='SuggestSplitWords' value='1'><param name='TypographicalSuggestions' value='1'></OBJECT>"
var useSpell = false;
if (useSpell){
document.getElementById("spellcheck").style.display = 'inline';
document.getElementById("installspellcheck").style.display = 'none';
} else {
document.getElementById("spellcheck").style.display = 'none';
document.getElementById("installspellcheck").style.display = 'inline';
}
function install(){
open('/messageboard/registered/install-spellcheck.asp', null, 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=200,left=300,top=300');
}</script></td></tr></table></form><br/><script type='text/javascript'>function runchecker()
{
if (document.all.WSpell1)
{
document.all.WSpell1.Text = document.getElementById("messagebody").value;
document.all.WSpell1.Start;
document.getElementById("messagebody").value = document.all.WSpell1.Text;
}
else
{
setTimeout("runchecker()",150);
}
}

</script><table align='center' width='100%'><tr><td nowrap valign='top' align='left'>Jump to page : <a class='threadlink' href='thread-view.asp?tid=10716&amp;start=1'>1</a> <a class='threadlink'
href='thread-view.asp?tid=10716&amp;start=26'>2</a> <a class='threadlink' href='thread-view.asp?tid=10716&amp;start=51&amp;posts=56'>3</a> <br/>Now viewing page 1 [25 messages per page]</td><td nowrap
valign='top' align='right'><a href='thread-post.asp?action=reply&amp;fid=2&amp;tid=10716&amp;replyto=143498&amp;displaytype=flat'><img alt='Reply'
src='/messageboard/templates/tennis/images/common/localized/reply-button.gif' border='0'></a> <a
href='thread-post.asp?action=writenew&amp;fid=2&amp;tid=10716&amp;replyto=143498&amp;displaytype=flat'><img alt='New post'
src='/messageboard/templates/tennis/images/common/localized/new-post-button.gif' border='0'></a> </td></tr></table><table width='100%' align='center'><tr><td align='left' valign='top'><form
method='get' action='forum-view.asp'>Jump to forum : <select name='fid' size='1' class='bbsdropdownbox'><option value='-1'></option><option value='-1'> Hot Topics</option><option
value='-1'>----------------------</option><option value='7'> + Hot Topics</option><option value='8'> + Hot Topics (Archive)</option><option value='-1'></option><option value='-1'> Pro
Game</option><option value='-1'>----------------------</option><option selected value='2'> + ATP Tour</option><option value='9'> + WTA Tour</option><option value='14'> + Pro Tennis Player
Comparisons</option><option value='-1'></option><option value='-1'> Fantasy</option><option value='-1'>----------------------</option><option value='12'> + ATP Fantasy Tennis</option><option
value='-1'></option><option value='-1'> Your Game</option><option value='-1'>----------------------</option><option value='3'> + Instruction</option><option value='11'> + Fitness</option><option
value='10'> + Gear</option><option value='-1'></option><option value='-1'> General Discussion</option><option value='-1'>----------------------</option><option value='13'> + New Member
Introductions</option><option value='4'> + Media Discussion</option><option value='5'> + Off Topic</option><option value='-1'></option><option value='-1'> Message Board News & Live
Chats</option><option value='-1'>----------------------</option><option value='6'> + Live Chats & Events</option></select> <input type='submit' class='bbsbutton' value='Go'></form><a
href='printer-friendly.asp?tid=10716&amp;mid='>Printer friendly version</a><br/><a href='email-link.asp?tid=10716'>E-mail a link to this thread</a><br/></td><td align='right'><table class='bbstable'
cellspacing='1'><tr><td class='messagecellheader2'>Actions</td></tr><tr><td nowrap align='right' class='messagecellbody'><span class='smalltext'><a
href='/messageboard/forums/notification-toggle.asp?tid=10716&amp;redirect=%2Fmessageboard%2Fthread%2Dview%2Easp%3Ftid%3D10716%26posts%3D56%26start%3D1'>Toggle e-mail
notification</a><br/></span></td></tr></table></td></tr></table>
</td>
</tr>
</table>

</td>
<td width='180' class='right_column' valign='top'>

<!--Ad 160x600 -->
<table cellpadding="0" cellspacing="0" align="center">
<tr>
<td height="4"></td>
</tr>
<tr>
<td height="15" class="ad_header" align="center"><img src="/images/main/ad_header.gif"></td>
</tr>
<tr>
<td height="600" align="center">
<SCRIPT>
document.write('<scr' + 'ipt src=http://ad.doubleclick.net/adj/tenni..._board;site=;chan=;kw=;sz=160x600;tile=2;ord=' + random_number +
'></scr' + 'ipt>');
</SCRIPT>

<NOSCRIPT>
<A HREF="http://ad.doubleclick.net/jump/tenn...n=;kw=;sz=160x600;tile=2;ord='+random_number+'" >
<IMG SRC="http://ad.doubleclick.net/ad/tennis...n=;kw=;sz=160x600;tile=2;ord='+random_number+'" border="0" height="600"
width="160"></A>
</NOSCRIPT>
</td>
</tr>
<tr>
<td height="4"></td>
</tr>
<tr>
<td>

<!-- START NetRatings Measurement V5.1 -->
<!-- COPYRIGHT 2003 NetRatings Limited -->
<script language="JavaScript" type="text/javascript">
<!--
var _rsCI="us-blackrockent";
var _rsCG="tennis";
var _rsDT=0;
var _rsDU=1;
var _rsDO=0;
var _rsX6=0;
var _rsSI=escape(window.location);
var _rsLP=location.protocol.indexOf('https')>-1?'https:':'http:';
var _rsRP=escape(document.referrer);
var _rsND=_rsLP+'//secure-us.imrworldwide.com/';

if (parseInt(navigator.appVersion)>=4)
{
var _rsRD=(new Date()).getTime();
var _rsSE=0;
var _rsSV="";
var _rsSM=0;
_rsCL='<scr'+'ipt language="JavaScript" type="text/javascript" src="'+_rsND+'v51.js"><\/scr'+'ipt>';
}
else
{
_rsCL='<img src="'+_rsND+'cgi-bin/m?ci='+_rsCI+'&cg='+_rsCG+'&si='+_rsSI+'&rp='+_rsRP+'">';
}
document.write(_rsCL);
//-->
</script>
<noscript>
<img src="//secure-us.imrworldwide.com/cgi-bin/m?ci=us-blackrockent&amp;cg=tennis" alt="">
</noscript>
<!-- END RedMeasure V5.1 -->

<!-- Google Analytics -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-4667236-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
<!-- End Google Analytics -->

<!-- Start Quantcast tag -->

<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>

<script type="text/javascript">_qacct="p-73Wn273O89few";quantserve();</script>

<noscript>

<a href="http://www.quantcast.com/p-73Wn273O89few" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-73Wn273O89few.gif" style="display: none;" border="0" height="1" width="1"
alt="Quantcast"/></a>

</noscript>

<!-- End Quantcast tag -->

</td>
</tr>
</table>

</td>

</tr>
</table><a name='bottom'></a><table width='954' height='58' cellspacing='0' cellpadding='0'><tr><td class='footer' style='padding-left: 6px; padding-top: 3px'>(<a
href='/messageboard/delete-cookies.asp'>Delete all cookies set by this site</a>)</td><td align='right' class='footer' style='padding-right: 6px; padding-top: 3px'></td></tr><tr><td height='35'
class='footer' colspan='2' align='center' valign='center'>&copy; 2008 TENNIS.com. All Rights Reserved.</td></tr><tr><td colspan='2' class='error'></br></td></tr></table></body></html>



*************************************************
*************************************************
*************************************************
*************************************************
*************************************************


RXParse 2
new parse _: SCALAR ref
______________________________

char _: ?
--------------------
doctype_h _: html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
--------------------
char _:

--------------------
start _: html
--------------------
start _: head
--------------------
char _:

--------------------
start _: meta
http-equiv = content-type
content = text-html; charset=utf-8
--------------------
char _:

--------------------
start _: title
--------------------
char _: TENNIS.com - Message Board - Viewing a Thread - Federer and Mononucleosis
--------------------
end _: /title
--------------------
char _:

--------------------
start _: script
type = text/javascript
--------------------
char _: function updateCookie() {
sThreadViewMode = document.container.DisplayType.options[document.container.DisplayType.selectedIndex].value;
document.cookie = "ThreadViewMode=" + sThreadViewMode + "; path=/;";
NewURL = document.location.pathname + "?tid=10716&DisplayType=" + sThreadViewMode + "&setCookie=1";
window.location = NewURL;
}
--------------------
end _: /script
--------------------
char _:


--------------------
start _: link
rel = stylesheet
href = /messageboard/templates/tennis/template.css
type = text/css
--------------------
char _:


--------------------
start _: style
type = text/css
--------------------
char _: .messagecellheader{background-image:url('/messageboard/templates/tennis/images/common/messagecellheader-background.gif');background-repeat:repeat-x; background-position:top; height:24px;}
..messagecellfooter{background-image:url('/messageboard/templates/tennis/images/common/messagecellfooter-background.gif'); background-position: bottom; background-repeat:repeat-all; height:5px;}
..messagecellheader2{background-image:url('/messageboard/templates/tennis/images/common/messagecellheader2-background.gif'); background-position: top; background-repeat:repeat-x; height:20px;}
..messagecellheader3{background-image:url('/messageboard/templates/tennis/images/common/messagecellheader3-background.gif'); background-position: top; background-repeat:repeat-x; height:20px;}
..bbstextbox{background-position: left top; background-image:url('/messageboard/templates/tennis/images/common/cell-background.gif'); background-repeat:no-repeat; background-attachment:fixed;}
..bbseditbox{background-position: left top; background-image:url('/messageboard/templates/tennis/images/common/cell-background.gif'); background-repeat:no-repeat; background-attachment:fixed;}
..navbar{ border:1px groove #000000; background-color: #333399;FONT-SIZE: 13px;FONT-WEIGHT: bold; color:#FFFFFF; padding-left:4px; padding-right:4px; padding-top:1px;
padding-bottom:1px;background-image:url('/messageboard/templates/tennis/images/common/navbar-background.gif'); background-repeat:repeat-x;}
..logoright{background-image:url('/messageboard/templates/tennis/images/common/logo-right.gif');background-repeat:repeat-x; background-position:top; height:58px;}

--------------------
end _: /style
--------------------
char _:

--------------------
start _: script
type = text/javascript
--------------------
char _:

--------------------
comnt _:
function formSubmit(submitted)
{
if(submitted=="1")
{
msgform.Submit.disabled=true;
}
}
//
--------------------
char _:

--------------------
end _: /script
--------------------
end _: /head
--------------------
start _: body
--------------------
char _:



--------------------
start _: SCRIPT
LANGUAGE = JavaScript
--------------------
char _:

--------------------
comnt _: Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=988,height=597');");
}
// End
--------------------
char _:

--------------------
end _: /script
--------------------
char _:


--------------------
comnt _: Ad / Header -------------------------------------------------------------------------------------------------
--------------------
char _:


--------------------
start _: table
width = 954
cellpadding = 0
cellspacing = 0
bgcolor = #175617
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
--------------------
char _:


--------------------
start _: table
width = 954
cellpadding = 0
cellspacing = 0
bgcolor = #175617
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
width = 226
height = 96
--------------------
start _: a
href = /index.aspx
--------------------
start _: img
src = /images/main/logo.gif
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
char _:

--------------------
start _: td
width = 728
valign = top
--------------------
char _:


--------------------
start _: table
width = 728
height = 90
cellpadding = 0
cellspacing = 0
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
--------------------
char _:

--------------------
start _: SCRIPT
--------------------
char _:
var a = Math.floor(Math.random()*9999999999+1)
var random_number = a;
document.write('<scr' + 'ipt src=http://ad.doubleclick.net/adj/tenni...te=;chan=;kw=;dcopt=ist;sz=728x90;tile=1;ord=' +
random_number + '></scr' + 'ipt>');

--------------------
end _: /SCRIPT
--------------------
char _:


--------------------
start _: NOSCRIPT
--------------------
char _:

--------------------
start _: A
HREF = http://ad.doubleclick.net/jump/tenn...an=;kw=;sz=728x90;tile=1;ord='+random_number+'
--------------------
char _:

--------------------
start _: IMG
SRC = http://ad.doubleclick.net/ad/tennis...an=;kw=;sz=728x90;tile=1;ord='+random_number+'
border = 0
height = 90
width = 728
--------------------
end _: /A
--------------------
char _:

--------------------
end _: /NOSCRIPT
--------------------
char _:

--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
end _: /table
--------------------
char _:


--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
end _: /table
--------------------
char _:


--------------------
start _: table
width = 954
cellpadding = 0
cellspacing = 0
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
class = top_nav
height = 22
align = left
--------------------
char _:

--------------------
start _: a
href = /livescores/index.html
--------------------
char _: Live Scores
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = /tvschedule/tvschedule.aspx?id=67
target = _top
--------------------
char _: TV Schedule
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = javascript:popUp('/media/video/index.aspx')
--------------------
char _: Video
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = /schedule/index.aspx?id=109402
--------------------
char _: Pro Schedule
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = /rankings/index.aspx?id=40696
--------------------
char _: Rankings
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = /players/index.aspx
--------------------
char _: Players
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = /statistics/index.aspx
--------------------
char _: Stats
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = /messageboard
--------------------
char _: Message Boards
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = /newsletter/index.aspx
--------------------
char _: Newsletter
--------------------
end _: /a
--------------------
char _:

--------------------
end _: /td
--------------------
char _:

--------------------
start _: td
class = top_nav
height = 22
align = right
style = padding-right: 10px
--------------------
char _:

--------------------
start _: a
href = http://www.tennis.com/subscribe
target = _blank
--------------------
start _: font
color = #ffff00
--------------------
char _: Subscribe
--------------------
end _: /font
--------------------
end _: /a
--------------------
char _: &nbsp;|&nbsp;

--------------------
start _: a
href = http://www.tennisacestore.com
target = _blank
--------------------
start _: font
color = #ffff00
--------------------
char _: Store
--------------------
end _: /font
--------------------
end _: /a
--------------------
char _:

--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
end _: /table
--------------------
char _:


--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
end _: /table
--------------------
char _:


--------------------
start _: table
width = 954
cellspacing = 0
cellpadding = 0
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
bgcolor = #FFFFFF
valign = top
--------------------
char _:


--------------------
start _: table
width = 100%
cellspacing = 0
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
--------------------
char _:

--------------------
start _: table
background = /images/bars/orange_bar_extended.gif
width = 100%
height = 39
cellpadding = 0
cellspacing = 0
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
class = section_title
height = 39
valign = center
--------------------
char _: Message Boards
--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
--------------------
char _:

--------------------
start _: table
width = 100%
border = 0
cellspacing = 0
cellpadding = 0
--------------------
start _: tr
--------------------
start _: td
height = 22
class = sub_menu
--------------------
start _: a
class = headerbarlink
href = /messageboard/category-view.asp
--------------------
start _: font
color = #016e02
size = 1
--------------------
char _: Home
--------------------
end _: /font
--------------------
end _: /a
--------------------
char _: &nbsp;
| &nbsp;
--------------------
start _: a
class = headerbarlink
href = /messageboard/search/query.asp?collapsethreads=1&action=search&searchforumid=all&keywords=&author=&days=lastlogin
--------------------
start _: font
color = #016e02
size = 1
--------------------
char _: New Threads
--------------------
end _: /font
--------------------
end _: /a
--------------------
char _: &nbsp;
| &nbsp;
--------------------
start _: a
class = headerbarlink
href = /messageboard/statistics/user-listing.asp
--------------------
start _: font
color = #016e02
size = 1
--------------------
char _: User Listing
--------------------
end _: /font
--------------------
end _: /a
--------------------
char _: &nbsp;
| &nbsp;
--------------------
start _: a
class = headerbarlink
href = /messageboard/search/query.asp?collapsethreads=1
--------------------
start _: font
color = #016e02
size = 1
--------------------
char _: Search
--------------------
end _: /font
--------------------
end _: /a
--------------------
char _: &nbsp;
| &nbsp;
--------------------
start _: a
class = headerbarlink
href = /messageboard/profile/controlpanel.asp
--------------------
start _: font
color = #016e02
size = 1
--------------------
char _: Control Panel
--------------------
end _: /font
--------------------
end _: /a
--------------------
char _: &nbsp;

--------------------
end _: /td
--------------------
start _: td
height = 22
class = sub_menu
style = padding-right: 12px
align = right
--------------------
start _: a
href = /messageboard/policy.html
target = _blank
--------------------
char _: MESSAGE BOARD POLICY
--------------------
end _: /a
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
char _:


--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
end _: /table
--------------------
char _:

--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
--------------------
start _: table
border = 0
cellspacing = 0
cellpadding = 0
width = 100%
--------------------
char _:

--------------------
start _: tr
--------------------
start _: td
height = 5
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: div
class = headercontrolbox
--------------------
char _:

--------------------
start _: span
class = smalltext
--------------------
char _: Welcome, FedRus (
--------------------
start _: a
href = /messageboard/logoff.asp
--------------------
char _: Logoff
--------------------
end _: /a
--------------------
char _: ).&nbsp;You have 18 messages in your
--------------------
start _: a
href = /messageboard/inbox.asp
--------------------
char _: inbox
--------------------
end _: /a
--------------------
char _: (0 new).
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: There are
--------------------
start _: a
href = /messageboard/statistics/whos-online.asp
--------------------
char _: 29 other users
--------------------
end _: /a
--------------------
char _: online (6 registered, 23 guests).&nbsp;
--------------------
end _: /span
--------------------
end _: /div
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
height = 5
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
char _:

--------------------
start _: table
align = center
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: span
class = header4
--------------------
char _: Federer and Mononucleosis
--------------------
end _: /span
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Jump to page :
--------------------
start _: a
class = threadlink
href = thread-view.asp?tid=10716&start=1
--------------------
char _: 1
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
class = threadlink
href = thread-view.asp?tid=10716&start=26
--------------------
char _: 2
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
class = threadlink
href = thread-view.asp?tid=10716&start=51&posts=56
--------------------
char _: 3
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Now viewing page 1 [25 messages per page]
--------------------
end _: /td
--------------------
start _: td
class = smalltext
align = right
valign = bottom
--------------------
start _: a
href = /messageboard/forums/thread-skip.asp?tid=10716&m=1
--------------------
char _: View previous thread
--------------------
end _: /a
--------------------
char _: ::
--------------------
start _: a
href = /messageboard/forums/thread-skip.asp?tid=10716&m=2
--------------------
char _: View next thread
--------------------
end _: /a
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
align = left
valign = bottom
--------------------
start _: a
href = thread-post.asp?action=reply&fid=2&tid=10716&replyto=143498&displaytype=flat
--------------------
start _: img
alt = Reply
src = /messageboard/templates/tennis/images/common/localized/reply-button.gif
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = thread-post.asp?action=writenew&fid=2&tid=10716&replyto=143498&displaytype=flat
--------------------
start _: img
alt = New post
src = /messageboard/templates/tennis/images/common/localized/new-post-button.gif
border = 0
--------------------
end _: /a
--------------------
char _: &nbsp;&nbsp;&nbsp;
--------------------
start _: a
href = /messageboard/category-view.asp?showall=true
--------------------
char _: Pro Game
--------------------
end _: /a
--------------------
char _: ->
--------------------
start _: a
href = forum-view.asp?fid=2
--------------------
char _: ATP Tour
--------------------
end _: /a
--------------------
end _: /tr
--------------------
end _: /table
--------------------
start _: form
method = post
action = /messageboard/pollbooth/castvote.asp
--------------------
start _: input
type = hidden
name = redirect
value = /messageboard/forums/thread-view.asp?tid=10716&posts=56&start=1
--------------------
start _: input
type = hidden
name = pollid
value = 734
--------------------
start _: input
type = hidden
name = action
value = vote
--------------------
start _: table
class = bbstable
width = 95%
align = center
cellspacing = 1
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellheader
--------------------
char _: Federer and Mononucleosis
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellheader2
--------------------
char _: Option
--------------------
end _: /td
--------------------
start _: td
class = messagecellheader2
--------------------
char _: Results
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellbody
--------------------
start _: input
type = radio
class = bbsradiobox
value = 3892
name = optionid
--------------------
char _: He had Mono but is SUPERMAN and so can still make finals of slams
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
width = 35%
class = messagecellbody
align = left
--------------------
char _: 51 Votes - [67.11%]
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-left.gif
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-center.gif
width = 201
height = 11
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-right.gif
alt =
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellbody
--------------------
start _: input
type = radio
class = bbsradiobox
value = 3893
name = optionid
--------------------
char _: He never had mono
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
width = 35%
class = messagecellbody
align = left
--------------------
char _: 11 Votes - [14.47%]
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-left.gif
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-center.gif
width = 43
height = 11
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-right.gif
alt =
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellbody
--------------------
start _: input
type = radio
class = bbsradiobox
value = 3894
name = optionid
--------------------
char _: He had mono but it was very mild
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
width = 35%
class = messagecellbody
align = left
--------------------
char _: 13 Votes - [17.11%]
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-left.gif
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-center.gif
width = 51
height = 11
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-right.gif
alt =
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellbody
--------------------
start _: input
type = radio
class = bbsradiobox
value = 3895
name = optionid
--------------------
char _: He had mono years ago, and got diagnosed in 08
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
width = 35%
class = messagecellbody
align = left
--------------------
char _: 0 Votes - [0%]
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-left.gif
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-center.gif
width = 0
height = 11
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-right.gif
alt =
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellbody
--------------------
start _: input
type = radio
class = bbsradiobox
value = 3896
name = optionid
--------------------
char _: It's all a lie
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
width = 35%
class = messagecellbody
align = left
--------------------
char _: 1 Votes - [1.32%]
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-left.gif
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-center.gif
width = 4
height = 11
alt =
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/poll-right.gif
alt =
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellbody
align = right
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellfooter
colspan = 2
align = center
--------------------
start _: input
class = bbsbutton
type = submit
value = Submit
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /form
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: table
align = center
width = 100%
class = bbstable
cellspacing = 1
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellheader
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=457
--------------------
char _: MikeOne
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143498
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:16 AM (#143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143498&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143498
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143498
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Grand Slam Champion
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 3772
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: We all know he claims he was diagnosed with mononucleosis and he claims was a factor early in the year. I have questions.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
1. Why did he say that he has had mono since 2006? What does this mean?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
2. Why did he say he felt 100% and was feeling so great in the first few rounds when he was killing everyone at AO? IF HE WAS ILL?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
3. Why did Santoro say "he's moving better than ever and playing better than ever" after he lost to Roger at AO if Roger was ILL?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
4. Why did Federer ONLY suffer effects of Mono after he got taken to 5 sets by Tipseravic and later beaten by Djokovic but not when he won his first few matches where he stated he was at 100%? Is this
a case of "When i win, i'm 100% but if i lose, i will use mono as an excuse??"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
5. We all see how Ancic has been affected by Mono, the guy has had to stop playing tennis for a long time but Federer is able to play 5 set battle against Tipseravic and then, right after the match,
go work out? and then come back and win his next two matches in straight sets? How can a guy with mono be able to do this?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
6. He then suffers a few losses, after losing to Novak and 'mono' is the excuse again. Why can't it just be a confidence thing after losing to Novak? Can Roger never run into a mental slump? just
physical ones?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
7. He then all off sudden, AS I FORETOLD, gets it together for clay court season and is remarkably at 100% just in time for FO? He made finals of Rome, Hamburg and finals of FO... on clay, where
points are longest. So, he just happened to get better just in time for clay court season? Or this is simply a case of Roger losing earlier, cause he lost confidence, and then getting motivated for FO
and kicking butt? proving he never really was affected by Mono?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
8. He then played what could've been his best tennis ever at Wimbledon, breezing through all his matches leading into final, but then lost in finals and 'mono' talks resumed. So he's at 100% until
final ad then 'mono' creeps up?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
so many good questions above, and below here is a poll to see what you guys think
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: span
class = smalltext
--------------------
char _: Edited by MikeOne 9/11/2008 10:23 AM
--------------------
end _: /span
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Mike's compilation of gems:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Tennis2006: "Hewitt better than Agassi"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
TheLogo: "Karlovic would EASILY have been a dominant force in 90s"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
FedRus: "Sampras was the most ill player I'd ever seen. His tongue licking-between teeth on closeups made me puke if I was eating. ABSOLUTELY THE MOST DISCUSTING HUMAN BEING ON THE TENNIS PLANTED
BACK THEN !!!!!!!!!!!"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
OOCC: "A service winner can only be an ace"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
cyBorg: "Sampras is 9th in GOAT list"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Huntingyou: "Federer would beat Sampras at Wimbledon 1,1,1, and i'm being nice" *
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
* Pete at 36
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=457
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=457
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=2745
--------------------
char _: Pete
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143506
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:32 AM (#143506 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143506&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143506
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143506
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://rhein-zeitung.de/on/96/11/25/sport/news/sampras1.jpg
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Legend
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 5063
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Location: At the net.... where else would I be???
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
We all know he claims he was diagnosed with mononucleosis and he claims was a factor early in the year. I have questions.
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
The Greg Maddux of posters once again with highly inteelectual qustions fo the masses.....
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
1. Why did he say that he has had mono since 2006? What does this mean?
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Yes what does it mean??? Enlighten us federphiles.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
2. Why did he say he felt 100% and was feeling so great in the first few rounds when he was killing everyone at AO?
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Another great question. Anyone????
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
3. Why did Santoro say "he's moving better than ever and playing better than ever" after he lost to Roger at AO if Roger was ILL?
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Yes Tennis2006 why????
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: a
href = http://tennis.com/messageboard/foru...t=1&highlight=santoro+federer&highlightmode=1
target = _blank
title = http://tennis.com/messageboard/foru...t=1&highlight=santoro+federer&highlightmode=1
--------------------
char _: http://tennis.com/messageboard/forums/thread-view.asp?tid=6042&star...
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
You did post this did you not????
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
4. Why did Federer ONLY suffer effects of Mono after he got taken to 5 sets by Tipseravic and later beaten by Djokovic but not when he won his first few matches where he stated he was at 100%? Is this
a case of "When i win, i'm 100% but if i lose, i will use mono as an excuse??"
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Again... Federphiles????
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
5. We all see how Ancic has been affected by Mono, the guy has had to stop playing tennis for a long time but Federer is able to play 5 set battle against Tipseravic and the right after the match, go
work out? and then come back and win his next two matches in straight sets? How can a guy with mono be able to do this?
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Yes how can he???? Inquiring minds would like to know.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
6. He then suffers a few losses, after losing to Novak and 'mono' is the excuse again. Why can't it just be a confidence thing after losing to Novak?
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Why can't it??? Federphiles????
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
7. He then all off sudden, AS I FORETOLD, gets it together for clay court season and is remarkably at 100% just in time for FO? He made finals of Rome, Hamburg and finals of FO... on clay, where
points ar slowest. So, he just happened to get better just in time for clay court season? Or this simply a case of Roger losing earlier, cause he lost confidence, and then getting motivated for FO and
kicking butt? proving he never really as affected by Mono?
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Wasn't he constantly going up a break and the double breaks vs Nadal??? So the mono only kicked in after he lost the leads????
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
8. He then is playing his best tennis ever at Wimbledon, breezing through all his matches leading into final, but then loses and 'mono' talks resume. So he's at 100% until final ad then 'mono' creeps
up?
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Yes how did Fed get to the final only dropping a set along the way, while only getting broken twice???
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
so many good questions above, and below here is a poll to see what you guys think
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
So many good questions. But as usal, such nonsensical answers, if you get any at all.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: "Pete is the greatest player ever. I'd even put him ahead of myself" -Rod Laver
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (mid 90's and reitterated in 2000
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: )
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
"Sure, it's disappointing he didn't win the French Open but you cannot deny he is the best ever... Rod Laver says he is the best ever.... and if he says Pete's the best, then he is the best." -Billie
Jean King
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=2745
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=2745
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3534
--------------------
char _: kowarrior
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143511
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:32 AM (#143511 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: Re: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143511&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143511
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143511
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 2402
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: LOL! Why don't you ask Federer's doctor?
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=2745
--------------------
char _: Pete
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143513
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:39 AM (#143513 - in reply to #143511)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: Re: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143513&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143513
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143513
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://rhein-zeitung.de/on/96/11/25/sport/news/sampras1.jpg
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Legend
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 5063
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Location: At the net.... where else would I be???
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: kowarrior - 9/11/2008 2:32 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
LOL! Why don't you ask Federer's doctor?
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
You mean the one who diagnsed the recurring version that kept creeping up after losses???
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
char _:
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_giggle.gif
--------------------
char _:
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: "Pete is the greatest player ever. I'd even put him ahead of myself" -Rod Laver
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (mid 90's and reitterated in 2000
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: )
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
"Sure, it's disappointing he didn't win the French Open but you cannot deny he is the best ever... Rod Laver says he is the best ever.... and if he says Pete's the best, then he is the best." -Billie
Jean King
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=2745
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=2745
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=4934
--------------------
char _: Kieran
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143514
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:40 AM (#143514 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143514&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143514
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143514
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://antiquetennis.com/mediac/400_0/media/streamline.JPG
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Challenger Qualifier
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 615
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Location: A yard inside the baseline...
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: Mikeone, you beat me to it! I was gonna run a "did he, didn't he?" poll on this because, frankly, I believe it's all baloney. A dress rehearsal for his decline.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I don't blame the guy for feeling pressure of being number one, as he said himself, he had a monster on his back. But why didn't he just fess up? Why not simply come clean and place his own
victories in context so that then we could all agree, he been winning a lot but it could never last so long as Rafa was going to peak...followed by Novak and maybe some others?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Mono?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
No no!
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=4934
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=4934
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=2948
--------------------
char _: SAMPRAS_fan
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143516
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:43 AM (#143516 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143516&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143516
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143516
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Legend
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 7986
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: FEDERER NOW declares that "I am actually FEELING MUCH BETTER NOW at 27 than i EVER did in my career"............
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
uhmm...
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=2948
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=2948
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=2948
--------------------
char _: SAMPRAS_fan
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143518
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:44 AM (#143518 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143518&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143518
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143518
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Legend
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 7986
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: and this roger has the gall to laugh along with Roddick concerning NOVAK"S medical time outs..........
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=2948
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=2948
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3534
--------------------
char _: kowarrior
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143519
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:46 AM (#143519 - in reply to #143514)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143519&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143519
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143519
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 2402
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 1:40 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Mikeone, you beat me to it! I was gonna run a "did he, didn't he?" poll on this because, frankly, I believe it's all baloney. A dress rehearsal for his decline.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I don't blame the guy for feeling pressure of being number one, as he said himself, he had a monster on his back. But why didn't he just fess up? Why not simply come clean and place his own
victories in context so that then we could all agree, he been winning a lot but it could never last so long as Rafa was going to peak...followed by Novak and maybe some others?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Mono?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
No no!
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
It's what YOU believe. But until you PROVE that he didn't have mononucleosis or traces of it in his system, then your posts and all these threads relating to the subject are pure baloney!
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Prove it first. That's what I ask of you. Prove that he didn't have mono. THEN you can post as many laughing and smiling emotion icons as you please and I'll do the same.
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=4934
--------------------
char _: Kieran
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143520
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:51 AM (#143520 - in reply to #143518)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143520&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143520
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143520
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://antiquetennis.com/mediac/400_0/media/streamline.JPG
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Challenger Qualifier
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 615
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Location: A yard inside the baseline...
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: SAMPRAS_fan - 9/11/2008 7:44 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
and this roger has the gall to laugh along with Roddick concerning NOVAK"S medical time outs..........
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Yeah, I thought THAT was a bit catty, like a gossip queen smarming over a prom queens smudged lippy.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fact is, Wodger must detest Ancic round about now, cos po' Mario has it bad and a potentially excellent career is in ruins because of Mono, which has TERRIBLE side effects and can't be shrugged off
like a common cold. And because of Ancic we all know what Mono REALLY does.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Ever try running off a broken leg? THAT'S Mono!
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=4934
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=4934
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3534
--------------------
char _: kowarrior
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143521
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:47 AM (#143521 - in reply to #143518)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143521&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143521
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143521
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 2402
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: SAMPRAS_fan - 9/11/2008 1:44 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
and this roger has the gall to laugh along with Roddick concerning NOVAK"S medical time outs..........
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Go prove he didn't have it Sampras_fan. Just because he won the USO doesn't mean he doesn't still have mono.
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3534
--------------------
char _: kowarrior
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143523
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 10:48 AM (#143523 - in reply to #143520)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143523&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143523
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143523
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 2402
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 1:51 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: SAMPRAS_fan - 9/11/2008 7:44 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
and this roger has the gall to laugh along with Roddick concerning NOVAK"S medical time outs..........
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Yeah, I thought THAT was a bit catty, like a gossip queen smarming over a prom queens smudged lippy.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fact is, Wodger must detest Ancic round about now, cos po' Mario has it bad and a potentially excellent career is in ruins because of Mono, which has TERRIBLE side effects and can't be shrugged off
like a common cold. And because of Ancic we all know what Mono REALLY does.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Ever try running off a broken leg? THAT'S Mono!
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Henin had mono too correct? She won Slams. Ancic had mono too, he played the FO and Wimbledon just fine. His condition is worse, his is recurring. Federer's case is not as bad by the looks of it.
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3121
--------------------
char _: MatchPt
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143536
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:03 AM (#143536 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143536&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143536
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143536
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://www.telegraph.co.uk/telegraph/multimedia/archive/00683/ivanovich404_683447c.jpg
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 1199
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: As the world know Federer contracting mononucleosis
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (and was well-publicized
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) this year and it was affecting his game, only mikeone and Pete are in denial.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Here's a few examples..….
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: a
href = http://www.iht.com/articles/2008/03/07/sports/arena.php
target = _blank
title = http://www.iht.com/articles/2008/03/07/sports/arena.php
--------------------
char _: http://www.iht.com/articles/2008/03/07/sports/arena.php
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: a
href = http://www.nytimes.com/2008/03/08/sports/tennis/08tennis.html
target = _blank
title = http://www.nytimes.com/2008/03/08/sports/tennis/08tennis.html
--------------------
char _: http://www.nytimes.com/2008/03/08/sports/tennis/08tennis.html
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: a
href = http://www.bumeral.net/blog/2008/04...-with-mononucleosis-federer-suffered-illness/
target = _blank
title = http://www.bumeral.net/blog/2008/04...-with-mononucleosis-federer-suffered-illness/
--------------------
char _: http://www.bumeral.net/blog/2008/04/08/roger-federer-sick-with-mono...
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: a
href = http://sports.espn.go.com/sports/tennis/news/story?id=3282485
target = _blank
title = http://sports.espn.go.com/sports/tennis/news/story?id=3282485
--------------------
char _: http://sports.espn.go.com/sports/tennis/news/story?id=3282485
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: a
href = http://nbcsports.msnbc.com/id/23526713/
target = _blank
title = http://nbcsports.msnbc.com/id/23526713/
--------------------
char _: http://nbcsports.msnbc.com/id/23526713/
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: a
href = http://sports.yahoo.com/ten/news?slug=txfederermono&prov=st&type=lgns
target = _blank
title = http://sports.yahoo.com/ten/news?slug=txfederermono&prov=st&type=lgns
--------------------
char _: http://sports.yahoo.com/ten/news?slug=txfederermono&prov=st&type=lg...
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Who should we believe? The fake god - Mikeone, Pete and S_fan? Or Federer and his doctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: MatchPt
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3121
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3121
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=2948
--------------------
char _: SAMPRAS_fan
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143540
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:08 AM (#143540 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143540&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143540
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143540
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Legend
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 7986
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: kowarrior -- when DAVID NALBANDIAN is injured or ill or had his family threatened with kidnapping -- do WE DEMAND PROOF straight from his DOCTOR?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when MONOFIED roger claims he had mono - do we DEMAND proof from HISdoctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when ANCIC had mono do we DEMAND proof from HIS doctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
NO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
BUT HERE is the difference.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when someone CLAIMS he had mono but PLAYS like SUPERMAN before he gets BEATEN -- and CLAIMS "i am as strong as ever"......and THEN UNWRAPS his "mono" as soon as he is beaten -
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
it is NOT fodder for TRUST!
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=2948
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=2948
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=4934
--------------------
char _: Kieran
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143541
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:12 AM (#143541 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143541&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143541
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143541
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://antiquetennis.com/mediac/400_0/media/streamline.JPG
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Challenger Qualifier
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 615
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Location: A yard inside the baseline...
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I don't believe him. Nor do I believe his "doctor"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
He showed absolutely NO effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (or side effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) of Mono and missed nary a beat in his season.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fella felt the heat, is all. An attack of the vapours....
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=4934
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=4934
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=2316
--------------------
char _: tented
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143545
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:15 AM (#143545 - in reply to #143541)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143545&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143545
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143545
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Challenger Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 429
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 3:12 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fella felt the heat, is all. An attack of the vapours....
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
char _:
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
char _:
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=2316
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=2316
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3121
--------------------
char _: MatchPt
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143547
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:16 AM (#143547 - in reply to #143541)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143547&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143547
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143547
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://www.telegraph.co.uk/telegraph/multimedia/archive/00683/ivanovich404_683447c.jpg
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 1199
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 11:12 AM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I don't believe him. Nor do I believe his "doctor"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
He showed absolutely NO effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (or side effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) of Mono and missed nary a beat in his season.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fella felt the heat, is all. An attack of the vapours....
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: MatchPt
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3121
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3121
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3534
--------------------
char _: kowarrior
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143549
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:17 AM (#143549 - in reply to #143540)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143549&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143549
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143549
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 2402
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: SAMPRAS_fan - 9/11/2008 2:08 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
kowarrior -- when DAVID NALBANDIAN is injured or ill or had his family threatened with kidnapping -- do WE DEMAND PROOF straight from his DOCTOR?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when MONOFIED roger claims he had mono - do we DEMAND proof from HISdoctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when ANCIC had mono do we DEMAND proof from HIS doctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
NO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
BUT HERE is the difference.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when someone CLAIMS he had mono but PLAYS like SUPERMAN before he gets BEATEN -- and CLAIMS "i am as strong as ever"......and THEN UNWRAPS his "mono" as soon as he is beaten -
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
it is NOT fodder for TRUST!
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Don't give me that, Sampras_fan. When Federer was losing to Gilles Simon, went life and death with Ginepri and lost to Karlovic the next day then lost to James Blake, even YOU weren't suddenly
doubting his mono. You and Kieran are doubting his mono now because he finally WON a tournament of significance.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
But that still doesn't mean that his small case of mono isn't still there. If Federer had lost the USO, this thread about his mono would not have been made.
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=4934
--------------------
char _: Kieran
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143551
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:22 AM (#143551 - in reply to #143547)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143551&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143551
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143551
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://antiquetennis.com/mediac/400_0/media/streamline.JPG
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Challenger Qualifier
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 615
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Location: A yard inside the baseline...
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: MatchPt - 9/11/2008 8:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 11:12 AM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I don't believe him. Nor do I believe his "doctor"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
He showed absolutely NO effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (or side effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) of Mono and missed nary a beat in his season.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fella felt the heat, is all. An attack of the vapours....
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people where?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I dunno anyone who believes he had it.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people on this board?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people on www.rogerfederer.com?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
In WHAT reality are 99% of people so easily fooled? Communist China?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Where, buddy, where?
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_rolleyes.gif
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=4934
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=4934
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=4259
--------------------
char _: nehmeth
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143557
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:22 AM (#143557 - in reply to #143547)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143557&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143557
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143557
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
start _: img
src = /messageboard/images/icon_online.gif
align = left
--------------------
start _: font
color = #00CC00
--------------------
char _: Online
--------------------
end _: /font
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Challenger Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 2731
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Location: central Pennsylvania
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: MatchPt - 9/11/2008 2:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 11:12 AM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I don't believe him. Nor do I believe his "doctor"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
He showed absolutely NO effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (or side effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) of Mono and missed nary a beat in his season.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fella felt the heat, is all. An attack of the vapours....
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Where do you get 'overwhelmingly' and '99%' from? Maybe in your circle of friends the percentage is that high, but the question all year
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (even among some fedfans
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) at the tennis clubs on the courts: Do you think he REALLY has mono? Some think yes, some think no and many are just not sure. Your group of friends either had the doctor's report right
in front of them, or you just talk to yourself.
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_wink.gif
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=4259
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=4259
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=457
--------------------
char _: MikeOne
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143558
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:24 AM (#143558 - in reply to #143551)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143558&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143558
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143558
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Grand Slam Champion
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 3772
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 2:22 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MatchPt - 9/11/2008 8:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 11:12 AM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I don't believe him. Nor do I believe his "doctor"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
He showed absolutely NO effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (or side effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) of Mono and missed nary a beat in his season.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fella felt the heat, is all. An attack of the vapours....
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people where?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I dunno anyone who believes he had it.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people on this board?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people on www.rogerfederer.com?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
In WHAT reality are 99% of people so easily fooled? Communist China?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Where, buddy, where? :roll:
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Mike's compilation of gems:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Tennis2006: "Hewitt better than Agassi"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
TheLogo: "Karlovic would EASILY have been a dominant force in 90s"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
FedRus: "Sampras was the most ill player I'd ever seen. His tongue licking-between teeth on closeups made me puke if I was eating. ABSOLUTELY THE MOST DISCUSTING HUMAN BEING ON THE TENNIS PLANTED
BACK THEN !!!!!!!!!!!"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
OOCC: "A service winner can only be an ace"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
cyBorg: "Sampras is 9th in GOAT list"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Huntingyou: "Federer would beat Sampras at Wimbledon 1,1,1, and i'm being nice" *
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
* Pete at 36
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=457
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=457
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3121
--------------------
char _: MatchPt
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143560
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:24 AM (#143560 - in reply to #143551)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143560&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143560
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143560
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: img
width = 70
alt =
border = 0
src = http://www.telegraph.co.uk/telegraph/multimedia/archive/00683/ivanovich404_683447c.jpg
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 1199
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 11:22 AM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: MatchPt - 9/11/2008 8:16 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: Kieran - 9/11/2008 11:12 AM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Dearie me, MatchPt, you quote the press? New York Times article says Federer "might" have had Mono.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I don't believe him. Nor do I believe his "doctor"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
He showed absolutely NO effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (or side effects
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) of Mono and missed nary a beat in his season.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Fella felt the heat, is all. An attack of the vapours....
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
But overwhelmingly more people agree Federer was suffering from mono. Your opinion only count one.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
You said he showed absolutely no effects? Not from 99.9% of the people's point of view.
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people where?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
I dunno anyone who believes he had it.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people on this board?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
99% of people on www.rogerfederer.com?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
In WHAT reality are 99% of people so easily fooled? Communist China?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Where, buddy, where? :roll:
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Given from the sources
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (internet
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ) we can all access, I see most articles are about Federer suffering from mono. Still 99.99% of the people would believe his doctor than you
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (no hard feeling
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: ).
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Do you see any article published about Federer's mono is a lie?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: MatchPt
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3121
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3121
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=457
--------------------
char _: MikeOne
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143567
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:34 AM (#143567 - in reply to #143549)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143567&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143567
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143567
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Grand Slam Champion
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 3772
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: kowarrior - 9/11/2008 2:17 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: SAMPRAS_fan - 9/11/2008 2:08 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
kowarrior -- when DAVID NALBANDIAN is injured or ill or had his family threatened with kidnapping -- do WE DEMAND PROOF straight from his DOCTOR?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when MONOFIED roger claims he had mono - do we DEMAND proof from HISdoctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when ANCIC had mono do we DEMAND proof from HIS doctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
NO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
BUT HERE is the difference.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when someone CLAIMS he had mono but PLAYS like SUPERMAN before he gets BEATEN -- and CLAIMS "i am as strong as ever"......and THEN UNWRAPS his "mono" as soon as he is beaten -
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
it is NOT fodder for TRUST!
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Don't give me that, Sampras_fan. When Federer was losing to Gilles Simon, went life and death with Ginepri and lost to Karlovic the next day then lost to James Blake, even YOU weren't suddenly
doubting his mono. You and Kieran are doubting his mono now because he finally WON a tournament of significance.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
But that still doesn't mean that his small case of mono isn't still there. If Federer had lost the USO, this thread about his mono would not have been made.
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
ARE YOU KIDDING ME?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
If he had lost at USO, THE MONO thing would've been used as an excuse and it would've been a freaking joke. He wins and now he's 'healthy'
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
it's laughable..
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
NO-ONE iwth Mono can play 5 set match, then right after the freaking match, go workout! and then come back and win his next two matches in straight sets.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
NO-ONE CAN DO THIS, IT IS PHYSICALLY IMPOSSIBLE!
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
unless Roger Federer is SUPERMAN and immortal
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
He ran into a mental slump this year. His loss to Novak got to him. It had nothing to do with Novak. The evidence suggests it was a mental rollercoaste, no physical.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Use your breain kowarrior. How the hell can Federer have MONO at AO, play a 5 setter, go workout, come right back and win matches.... then at clay court season, feel 100% again, just in time for FO
where he was motivated, do GREAT in clay court season, great on grass.... then after losing to Rafa, he gets Mono again... and then mono is the reason he loses to Simon? Karlovic? then at USO, mono is
gone, he wins. Then i bet if loses at Madrid or Paris or EOY masters cup, MONO AGAIN? are we gonna keep playing this freaking game for years now? LOL!
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Mike's compilation of gems:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Tennis2006: "Hewitt better than Agassi"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
TheLogo: "Karlovic would EASILY have been a dominant force in 90s"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
FedRus: "Sampras was the most ill player I'd ever seen. His tongue licking-between teeth on closeups made me puke if I was eating. ABSOLUTELY THE MOST DISCUSTING HUMAN BEING ON THE TENNIS PLANTED
BACK THEN !!!!!!!!!!!"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
OOCC: "A service winner can only be an ace"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
cyBorg: "Sampras is 9th in GOAT list"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Huntingyou: "Federer would beat Sampras at Wimbledon 1,1,1, and i'm being nice" *
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
* Pete at 36
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=457
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=457
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3534
--------------------
char _: kowarrior
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143569
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:38 AM (#143569 - in reply to #143567)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143569&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143569
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143569
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 2402
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
start _: div
class = quotation
--------------------
char _: MikeOne - 9/11/2008 2:34 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: kowarrior - 9/11/2008 2:17 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: div
class = quotation
--------------------
char _: SAMPRAS_fan - 9/11/2008 2:08 PM
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
kowarrior -- when DAVID NALBANDIAN is injured or ill or had his family threatened with kidnapping -- do WE DEMAND PROOF straight from his DOCTOR?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when MONOFIED roger claims he had mono - do we DEMAND proof from HISdoctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when ANCIC had mono do we DEMAND proof from HIS doctor?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
NO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
BUT HERE is the difference.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
when someone CLAIMS he had mono but PLAYS like SUPERMAN before he gets BEATEN -- and CLAIMS "i am as strong as ever"......and THEN UNWRAPS his "mono" as soon as he is beaten -
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
it is NOT fodder for TRUST!
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Don't give me that, Sampras_fan. When Federer was losing to Gilles Simon, went life and death with Ginepri and lost to Karlovic the next day then lost to James Blake, even YOU weren't suddenly
doubting his mono. You and Kieran are doubting his mono now because he finally WON a tournament of significance.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
But that still doesn't mean that his small case of mono isn't still there. If Federer had lost the USO, this thread about his mono would not have been made.
--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
ARE YOU KIDDING ME?
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
If he had lost at USO, THE MONO thing would've been used as an excuse and it would've been a freaking joke. He wins and now he's 'healthy'
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
it's laughable..
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
NO-ONE iwth Mono can play 5 set match, then right after the freaking match, go workout! and then come back and win his next two matches in straight sets.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
NO-ONE CAN DO THIS, IT IS PHYSICALLY IMPOSSIBLE!
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
unless Roger Federer is SUPERMAN and immortal
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
He ran into a mental slump this year. His loss to Novak got to him. It had nothing to do with Novak. The evidence suggests it was a mental rollercoaste, no physical.
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Use your breain kowarrior. How the hell can Federer have MONO at AO, play a 5 setter, go workout, come right back and win matches.... then at clay court season, feel 100% again, just in time for FO
where he was motivated, do GREAT in clay court season, great on grass.... then after losing to Rafa, he gets Mono again... and then mono is the reason he loses to Simon? Karlovic? then at USO, mono is
gone, he wins. Then i bet if loses at Madrid or Paris or EOY masters cup, MONO AGAIN? are we gonna keep playing this freaking game for years now? LOL!
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
end _: /div
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Oh really? I recall Ancic doing pretty damn well at Wimbledon, taking down world number 4 at the time David Ferrer in a 5 set war and still being ALIVE at the end of it.
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=3534
--------------------
char _: kowarrior
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143570
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:40 AM (#143570 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: Re: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143570&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143570
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143570
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: ATP-Level Main Draw
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 2402
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: Let's face it. NOBODY here knows what mononucleosis even is. Nobody here has had it.
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=3534
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messageheader
--------------------
start _: b
--------------------
start _: a
href = /messageboard/view-profile.asp?action=view&uid=457
--------------------
char _: MikeOne
--------------------
end _: /a
--------------------
end _: /b
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: img
src = /messageboard/images/spacer.gif
height = 1
width = 120
alt =
--------------------
end _: /td
--------------------
start _: td
class = messageheader
nowrap = UNDEF_ATTRVAL
width = 100%
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
--------------------
start _: a
name = M143573
--------------------
end _: /a
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/nav-messages-new.gif
alt =
--------------------
char _:
--------------------
start _: span
class = smalltext
--------------------
start _: b
--------------------
char _: Posted
--------------------
end _: /b
--------------------
char _: 9/11/2008 11:42 AM (#143573 - in reply to #143498)
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: b
--------------------
char _: Subject:
--------------------
end _: /b
--------------------
char _: RE: Federer and Mononucleosis
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
align = right
class = smalltext
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143573&quote=yes
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-replyquote.gif
alt = Quote
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/thread-post.asp?action=reply&replyto=143573
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-reply.gif
alt = Reply
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/forums/alert-post.asp?mid=143573
--------------------
start _: img
align = middle
src = /messageboard/templates/tennis/images/common/localized/message-alert.gif
alt = Alert
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
valign = top
height = 150
class = messagemiddle
--------------------
start _: span
class = smalltext
--------------------
start _: img
src = /messageboard/images/icon_offline.gif
align = left
--------------------
char _: Offline
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
char _: Grand Slam Champion
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Posts: 3772
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
start _: br
--------------------
start _: br
--------------------
end _: /span
--------------------
end _: /td
--------------------
start _: td
valign = top
class = messagemiddle
--------------------
start _: br
--------------------
char _: So, let's summarize:
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: font
size = 3
--------------------
start _: strong
--------------------
char _: 1. Start of year - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 2. His first 3 matches of AO - 100% HEALTHY
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 3. 5 sets to Tipseravic
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: (even though he even had energy to workout afterwards
--------------------
start _: b
--------------------
end _: /b
--------------------
char _: )- MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 4. wins in straight sets vs Blake and Berdych - 100% HEALTHY
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 5. Loses to Novak next round - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 6. Loses to Murray, Fish, Roddick - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 7. Wins Estoril & makes final of Monte Carlo - 100% healthy
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 9. Loses to Stepanek at Rome - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 10. Makes final of Hamburg and FO - 100% HEALTHY
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 11. Gets humiliated in finals of FO - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 12. Wins Halle - 100% HEALTHY
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 13. Makes it to finals of Wimbledon without dropping a set - 100% HEALTHY
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 14. Loses to Nadal in finals - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 15. loses to Karlovic, Simon at Toronto and Cincy - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 16. Makes a good run at Olympics - 100% healthy
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 17. Loses to Blake - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 18. Wins first few rounds of USO easily - 100% HEALTHY
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 19. Goes to 5 sets vs Andreev - MONO
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: 20. Beats Novak and Murray and wins USO - 100% HEALTHY
--------------------
start _: br
--------------------
end _: /br
--------------------
end _: /strong
--------------------
end _: /font
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: LOL!
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
char _: :lol:
--------------------
start _: img
align = middle
src = http://www.tennis.com/messageboard/images/emoticons/icon_lol.gif
--------------------
char _: :lol:
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: WHAT'S NEXT???? I CAN'T WAIT! THE DRAMA IS SO INTENSE!
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: absolutely ZERO credit is given to players like Nadal and Djokovic and NEVER, is a mental slump contemplated.. IT CAN ONLY BE MONO!
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Give me a FRIGGIN BREAK you clowns
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: span
class = smalltext
--------------------
char _: Edited by MikeOne 9/11/2008 11:45 AM
--------------------
end _: /span
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _: -----
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Mike's compilation of gems:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Tennis2006: "Hewitt better than Agassi"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
TheLogo: "Karlovic would EASILY have been a dominant force in 90s"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
FedRus: "Sampras was the most ill player I'd ever seen. His tongue licking-between teeth on closeups made me puke if I was eating. ABSOLUTELY THE MOST DISCUSTING HUMAN BEING ON THE TENNIS PLANTED
BACK THEN !!!!!!!!!!!"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
OOCC: "A service winner can only be an ace"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
cyBorg: "Sampras is 9th in GOAT list"
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
Huntingyou: "Federer would beat Sampras at Wimbledon 1,1,1, and i'm being nice" *
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:
* Pete at 36
--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
end _: /br
--------------------
char _:

--------------------
start _: br
--------------------
start _: br
--------------------
end _: /td
--------------------
start _: tr
--------------------
start _: td
class = messagefooter
style = height:20px
--------------------
char _:
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
class = messagefooter
--------------------
start _: table
cellpadding = 0
cellspacing = 0
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
--------------------
start _: a
href = /messageboard/view-profile.asp?uid=457
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/profile.gif
alt = Profile
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = /messageboard/send-private-message.asp?uid=457
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/private-message.gif
alt = Private message
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = http://
target = _blank
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/homepage.gif
alt = Homepage
border = 0
--------------------
end _: /a
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
char _:
--------------------
start _: a
href = #top
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-top.gif
alt = Top of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = #bottom
--------------------
start _: img
src = /messageboard/templates/tennis/images/common/localized/message-bottom.gif
alt = Bottom of the page
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
colspan = 2
class = messagecellspacer
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: form
name = reply
action = thread-post.asp?action=postreply
method = post
--------------------
start _: input
type = hidden
name = fid
value = 2
--------------------
start _: input
type = hidden
name = tid
value = 10716
--------------------
start _: input
type = hidden
name = replyto
value = 143498
--------------------
start _: input
type = hidden
name = mid
value = -1
--------------------
start _: input
type = hidden
name = emoticons
value = 1
--------------------
start _: input
type = hidden
name = disablehtml
value = 1
--------------------
start _: input
type = hidden
name = filtercrlf
value = 0
--------------------
start _: input
type = hidden
name = linebr
value = 0
--------------------
start _: input
type = hidden
name = anonymous
value = 0
--------------------
start _: input
type = hidden
name = subject
value = Re: Federer and Mononucleosis
--------------------
start _: table
align = center
width = 100%
class = bbstable
cellspacing = 1
--------------------
start _: tr
--------------------
start _: td
class = messagecellheader
--------------------
char _: Reply
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellbody
--------------------
start _: textarea
style = width: 99%
class = bbseditbox
rows = 5
cols = 75
name = messagebody
--------------------
end _: /textarea
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
class = messagecellfooter
align = center
--------------------
start _: input
type = submit
value = Submit
class = bbsbutton
--------------------
char _:
--------------------
start _: input
style = display: none
id = spellcheck
onclick = document.getElementById("wspelldiv").innerHTML = wspellid;
type = button
name = spellcheck
class = bbsbutton
value = Spellcheck
--------------------
start _: input
style = display: none
onclick = install()
id = installspellcheck
type = button
name = installspellcheck
class = bbsbutton
value = Install Spellchecker
--------------------
start _: div
style = display: none
id = wspelldiv
--------------------
end _: /div
--------------------
start _: script
type = text/javascript
--------------------
char _:
var wspellid="
--------------------
start _: OBJECT
style = display: none
CLASSID = clsid:5220cb21-c88d-11cf-b347-00aa00a28331
BORDER = 0
VSPACE = 0
HSPACE = 0
--------------------
start _: PARAM
NAME = LPKPath
VALUE = /messageboard/registered/wspell.lpk
--------------------
end _: /OBJECT
--------------------
char _:
--------------------
start _: OBJECT
style = display: none
onreadystatechange = runchecker()
CLASSID = clsid:245338C3-BCA3-4A2C-A7B7-53345999A8E8
ID = WSpell1
CODEBASE = /messageboard/registered/wspellam.cab#version=5,15,0,0
WIDTH = 28
HEIGHT = 27
BORDER = 0
VSPACE = 0
HSPACE = 0
--------------------
start _: PARAM
NAME = _Version
VALUE = 65536
--------------------
start _: PARAM
NAME = _ExtentX
VALUE = 450
--------------------
start _: PARAM
NAME = _ExtentY
VALUE = 582
--------------------
start _: PARAM
NAME = _StockProps
VALUE = 16
--------------------
start _: PARAM
NAME = ShowContext
VALUE = -1
--------------------
start _: PARAM
NAME = CatchMixedCaseWords
VALUE = 0
--------------------
start _: PARAM
NAME = IgnoreAllCapsWords
VALUE = 0
--------------------
start _: PARAM
NAME = IgnoreCapitalizedWords
VALUE = 0
--------------------
start _: PARAM
NAME = IgnoreHTMLMarkups
VALUE = 1
--------------------
start _: PARAM
NAME = IgnoreMixedCaseWords
VALUE = 0
--------------------
start _: PARAM
NAME = IgnoreWordsWithDigits
VALUE = 0
--------------------
start _: PARAM
NAME = MainDictionaryFiles
VALUE = ssceam.tlx,ssceam2.clx
--------------------
start _: PARAM
NAME = MinSuggestionDepth
VALUE = 40
--------------------
start _: PARAM
NAME = PhoneticSuggestions
VALUE = 0
--------------------
start _: PARAM
NAME = SplitContractedWords
VALUE = 0
--------------------
start _: PARAM
NAME = SplitWords
VALUE = 0
--------------------
start _: PARAM
NAME = SuggestionScoreRange
VALUE = 50
--------------------
start _: PARAM
NAME = UserDictionaryFiles
VALUE = userdic.tlx
--------------------
char _:
--------------------
start _: param
name = Text
value = UNDEF_ATTRVAL
--------------------
char _:
--------------------
start _: param
name = ShowDialog
value = 1
--------------------
char _:
--------------------
start _: param
name = DialogLeft
value = -1
--------------------
char _:
--------------------
start _: param
name = DialogTop
value = -1
--------------------
char _:
--------------------
start _: param
name = ShowDictionariesButton
value = 1
--------------------
char _:
--------------------
start _: param
name = ShowOptionsButton
value = 1
--------------------
char _:
--------------------
start _: param
name = AllowAccentedCaps
value = 1
--------------------
char _:
--------------------
start _: param
name = AutoCorrect
value = 1
--------------------
char _:
--------------------
start _: param
name = BackupUserDictionary
value = 0
--------------------
char _:
--------------------
start _: param
name = CaseSensitive
value = 1
--------------------
char _:
--------------------
start _: param
name = CatchDoubledWords
value = 1
--------------------
char _:
--------------------
start _: param
name = CatchWordsWithDigits
value = 0
--------------------
char _:
--------------------
start _: param
name = CharacterSet
value = 1
--------------------
char _:
--------------------
start _: param
name = IgnoreDomainNames
value = 0
--------------------
char _:
--------------------
start _: param
name = IgnoreNonAlphaWords
value = 1
--------------------
char _:
--------------------
start _: param
name = MaxSuggestions
value = 16
--------------------
char _:
--------------------
start _: param
name = MinSuggestionScore
value = 50
--------------------
char _:
--------------------
start _: param
name = SplitHyphenatedWords
value = 1
--------------------
char _:
--------------------
start _: param
name = StripPossessives
value = 1
--------------------
char _:
--------------------
start _: param
name = SuggestionDepthIncrement
value = 10
--------------------
char _:
--------------------
start _: param
name = SuggestSplitWords
value = 1
--------------------
start _: param
name = TypographicalSuggestions
value = 1
--------------------
end _: /OBJECT
--------------------
char _: "
var useSpell = false;
if (useSpell){
document.getElementById("spellcheck").style.display = 'inline';
document.getElementById("installspellcheck").style.display = 'none';
} else {
document.getElementById("spellcheck").style.display = 'none';
document.getElementById("installspellcheck").style.display = 'inline';
}
function install(){
open('/messageboard/registered/install-spellcheck.asp', null, 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=200,left=300,top=300');
}
--------------------
end _: /script
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /form
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: script
type = text/javascript
--------------------
char _: function runchecker()
{
if (document.all.WSpell1)
{
document.all.WSpell1.Text = document.getElementById("messagebody").value;
document.all.WSpell1.Start;
document.getElementById("messagebody").value = document.all.WSpell1.Text;
}
else
{
setTimeout("runchecker()",150);
}
}


--------------------
end _: /script
--------------------
start _: table
align = center
width = 100%
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
valign = top
align = left
--------------------
char _: Jump to page :
--------------------
start _: a
class = threadlink
href = thread-view.asp?tid=10716&start=1
--------------------
char _: 1
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
class = threadlink
href = thread-view.asp?tid=10716&start=26
--------------------
char _: 2
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
class = threadlink
href = thread-view.asp?tid=10716&start=51&posts=56
--------------------
char _: 3
--------------------
end _: /a
--------------------
char _:
--------------------
start _: br
--------------------
end _: /br
--------------------
char _: Now viewing page 1 [25 messages per page]
--------------------
end _: /td
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
valign = top
align = right
--------------------
start _: a
href = thread-post.asp?action=reply&fid=2&tid=10716&replyto=143498&displaytype=flat
--------------------
start _: img
alt = Reply
src = /messageboard/templates/tennis/images/common/localized/reply-button.gif
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
start _: a
href = thread-post.asp?action=writenew&fid=2&tid=10716&replyto=143498&displaytype=flat
--------------------
start _: img
alt = New post
src = /messageboard/templates/tennis/images/common/localized/new-post-button.gif
border = 0
--------------------
end _: /a
--------------------
char _:
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
start _: table
width = 100%
align = center
--------------------
start _: tr
--------------------
start _: td
align = left
valign = top
--------------------
start _: form
method = get
action = forum-view.asp
--------------------
char _: Jump to forum :
--------------------
start _: select
name = fid
size = 1
class = bbsdropdownbox
--------------------
start _: option
value = -1
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: Hot Topics
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: ----------------------
--------------------
end _: /option
--------------------
start _: option
value = 7
--------------------
char _: + Hot Topics
--------------------
end _: /option
--------------------
start _: option
value = 8
--------------------
char _: + Hot Topics (Archive)
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: Pro Game
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: ----------------------
--------------------
end _: /option
--------------------
start _: option
selected = UNDEF_ATTRVAL
value = 2
--------------------
char _: + ATP Tour
--------------------
end _: /option
--------------------
start _: option
value = 9
--------------------
char _: + WTA Tour
--------------------
end _: /option
--------------------
start _: option
value = 14
--------------------
char _: + Pro Tennis Player Comparisons
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: Fantasy
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: ----------------------
--------------------
end _: /option
--------------------
start _: option
value = 12
--------------------
char _: + ATP Fantasy Tennis
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: Your Game
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: ----------------------
--------------------
end _: /option
--------------------
start _: option
value = 3
--------------------
char _: + Instruction
--------------------
end _: /option
--------------------
start _: option
value = 11
--------------------
char _: + Fitness
--------------------
end _: /option
--------------------
start _: option
value = 10
--------------------
char _: + Gear
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: General Discussion
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: ----------------------
--------------------
end _: /option
--------------------
start _: option
value = 13
--------------------
char _: + New Member Introductions
--------------------
end _: /option
--------------------
start _: option
value = 4
--------------------
char _: + Media Discussion
--------------------
end _: /option
--------------------
start _: option
value = 5
--------------------
char _: + Off Topic
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: Message Board News & Live Chats
--------------------
end _: /option
--------------------
start _: option
value = -1
--------------------
char _: ----------------------
--------------------
end _: /option
--------------------
start _: option
value = 6
--------------------
char _: + Live Chats & Events
--------------------
end _: /option
--------------------
end _: /select
--------------------
char _:
--------------------
start _: input
type = submit
class = bbsbutton
value = Go
--------------------
end _: /form
--------------------
start _: a
href = printer-friendly.asp?tid=10716&mid=
--------------------
char _: Printer friendly version
--------------------
end _: /a
--------------------
start _: br
--------------------
end _: /br
--------------------
start _: a
href = email-link.asp?tid=10716
--------------------
char _: E-mail a link to this thread
--------------------
end _: /a
--------------------
start _: br
--------------------
end _: /br
--------------------
end _: /td
--------------------
start _: td
align = right
--------------------
start _: table
class = bbstable
cellspacing = 1
--------------------
start _: tr
--------------------
start _: td
class = messagecellheader2
--------------------
char _: Actions
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
nowrap = UNDEF_ATTRVAL
align = right
class = messagecellbody
--------------------
start _: span
class = smalltext
--------------------
start _: a
href = /messageboard/forums/notification-toggle.asp?tid=10716&redirect=%2Fmessageboard%2Fthread%2Dview%2Easp%3Ftid%3D10716%26posts%3D56%26start%3D1
--------------------
char _: Toggle e-mail notification
--------------------
end _: /a
--------------------
start _: br
--------------------
end _: /br
--------------------
end _: /span
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
end _: /td
--------------------
end _: /tr
--------------------
end _: /table
--------------------
char _:

--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
end _: /table
--------------------
char _:


--------------------
end _: /td
--------------------
char _:

--------------------
start _: td
width = 180
class = right_column
valign = top
--------------------
char _:


--------------------
comnt _: Ad 160x600
--------------------
char _:

--------------------
start _: table
cellpadding = 0
cellspacing = 0
align = center
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
height = 4
--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
height = 15
class = ad_header
align = center
--------------------
start _: img
src = /images/main/ad_header.gif
--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
height = 600
align = center
--------------------
char _:

--------------------
start _: SCRIPT
--------------------
char _:
document.write('<scr' + 'ipt src=http://ad.doubleclick.net/adj/tenni..._board;site=;chan=;kw=;sz=160x600;tile=2;ord=' + random_number +
'></scr' + 'ipt>');

--------------------
end _: /SCRIPT
--------------------
char _:


--------------------
start _: NOSCRIPT
--------------------
char _:

--------------------
start _: A
HREF = http://ad.doubleclick.net/jump/tenn...n=;kw=;sz=160x600;tile=2;ord='+random_number+'
--------------------
char _:

--------------------
start _: IMG
SRC = http://ad.doubleclick.net/ad/tennis...n=;kw=;sz=160x600;tile=2;ord='+random_number+'
border = 0
height = 600
width = 160
--------------------
end _: /A
--------------------
char _:

--------------------
end _: /NOSCRIPT
--------------------
char _:

--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
height = 4
--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
start _: tr
--------------------
char _:

--------------------
start _: td
--------------------
char _:


--------------------
comnt _: START NetRatings Measurement V5.1
--------------------
char _:

--------------------
comnt _: COPYRIGHT 2003 NetRatings Limited
--------------------
char _:

--------------------
start _: script
language = JavaScript
type = text/javascript
--------------------
char _:

--------------------
comnt _:
var _rsCI="us-blackrockent";
var _rsCG="tennis";
var _rsDT=0;
var _rsDU=1;
var _rsDO=0;
var _rsX6=0;
var _rsSI=escape(window.location);
var _rsLP=location.protocol.indexOf('https')>-1?'https:':'http:';
var _rsRP=escape(document.referrer);
var _rsND=_rsLP+'//secure-us.imrworldwide.com/';

if (parseInt(navigator.appVersion)>=4)
{
var _rsRD=(new Date()).getTime();
var _rsSE=0;
var _rsSV="";
var _rsSM=0;
_rsCL='<scr'+'ipt language="JavaScript" type="text/javascript" src="'+_rsND+'v51.js"><\/scr'+'ipt>';
}
else
{
_rsCL='<img src="'+_rsND+'cgi-bin/m?ci='+_rsCI+'&cg='+_rsCG+'&si='+_rsSI+'&rp='+_rsRP+'">';
}
document.write(_rsCL);
//
--------------------
char _:

--------------------
end _: /script
--------------------
char _:

--------------------
start _: noscript
--------------------
char _:

--------------------
start _: img
src = //secure-us.imrworldwide.com/cgi-bin/m?ci=us-blackrockent&cg=tennis
alt =
--------------------
char _:

--------------------
end _: /noscript
--------------------
char _:

--------------------
comnt _: END RedMeasure V5.1
--------------------
char _:


--------------------
comnt _: Google Analytics
--------------------
char _:

--------------------
start _: script
type = text/javascript
--------------------
char _:
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

--------------------
end _: /script
--------------------
char _:

--------------------
start _: script
type = text/javascript
--------------------
char _:
var pageTracker = _gat._getTracker("UA-4667236-1");
pageTracker._initData();
pageTracker._trackPageview();

--------------------
end _: /script
--------------------
char _:

--------------------
comnt _: End Google Analytics
--------------------
char _:


--------------------
comnt _: Start Quantcast tag
--------------------
char _:


--------------------
start _: script
type = text/javascript
src = http://edge.quantserve.com/quant.js
--------------------
end _: /script
--------------------
char _:


--------------------
start _: script
type = text/javascript
--------------------
char _: _qacct="p-73Wn273O89few";quantserve();
--------------------
end _: /script
--------------------
char _:


--------------------
start _: noscript
--------------------
char _:


--------------------
start _: a
href = http://www.quantcast.com/p-73Wn273O89few
target = _blank
--------------------
start _: img
src = http://pixel.quantserve.com/pixel/p-73Wn273O89few.gif
style = display: none;
border = 0
height = 1
width = 1
alt = Quantcast
--------------------
end _: /img
--------------------
end _: /a
--------------------
char _:


--------------------
end _: /noscript
--------------------
char _:


--------------------
comnt _: End Quantcast tag
--------------------
char _:


--------------------
end _: /td
--------------------
char _:

--------------------
end _: /tr
--------------------
char _:

--------------------
end _: /table
--------------------
char _:


--------------------
end _: /td
--------------------
char _:


--------------------
end _: /tr
--------------------
char _:

--------------------
end _: /table
--------------------
start _: a
name = bottom
--------------------
end _: /a
--------------------
start _: table
width = 954
height = 58
cellspacing = 0
cellpadding = 0
--------------------
start _: tr
--------------------
start _: td
class = footer
style = padding-left: 6px; padding-top: 3px
--------------------
char _: (
--------------------
start _: a
href = /messageboard/delete-cookies.asp
--------------------
char _: Delete all cookies set by this site
--------------------
end _: /a
--------------------
char _: )
--------------------
end _: /td
--------------------
start _: td
align = right
class = footer
style = padding-right: 6px; padding-top: 3px
--------------------
end _: /td
--------------------
end _: /tr
--------------------
start _: tr
--------------------
start _: td
height = 35
class = footer
colspan = 2
align = center
valign = center
--------------------
char _: &copy; 2008 TENNIS.com. All Rights Reserved.
--------------------
end _: /td
--------------------
end _: /tr
 
S

sln

I have absolutely no idea what what you mean by this. Not only is "real"
not well defined but why would snybody even think about a language
("HyperText Markup _LANGUAGE_") being an expression?

Do you even know what a regular language is and what properties are
associated with being a regular language resp. what properties are
assiciated with _NOT_ being a regular language?


Oh, that answers that question. Obviously you are unaware that only
regular languages can be parsed by (ordinary) regular expressions which
have the same expressiveness as regular grammars and finite automatons.

To parse context-sensitive languages you need at least a
non-deterministic pushdown automaton which in turn cannot be described
using regular expressions.

If you don't believe me then please re-read your books about Theory of
Programming Languages, chapter The Chomsky Hierarchy.

Now, Perl's REs are far more powerful than ordinary regular expressions,
so they might be powerful enough to parse context-sensitive languages.
But it's still a stupid thing to do. A simple parser is far easier to
write and to maintain than a gigantic mess of REs.


That's your call, not mine.


What does it matter? They parse HTML and thus solve the task at hand.
Correctly!


Oh, then by all means, please publish your findings. Contradicting
Chomsky is worth at least a Ph.D.

jue

Yeah, right, whatever you say jue.
See the Tad Macllelan reply for some really waste my time stuff I don't wan't
to repost for you !

sln
 
J

Jürgen Exner

See the Tad Macllelan reply for some really waste my time stuff I don't wan't
to repost for you !

Indeed, Tad summed it up much more concise than I did.

jue
 
T

Tad J McClellan

My friends would call you an "utter, and complete idiot", but I won't.


Then your friends don't know enough about language theory to be
taken seriously either.

I'm releasing a version 2 of my stuff.


Post it to rec.humor.funny where it belongs.

You live in a fantacy world, and have no knowledge of what markup is.


Right.

The XML FAQ accepts lots of answers from people who have no knowledge.
 
J

Jürgen Exner

My friends would call you an "utter, and complete idiot", but I won't.

I don't need imaginary friends, I simply do call you ignorant. That in
itself can be changed if a person is willing to learn. Unfortunately I
don't see any signs of that happening.
I'm releasing a version 2 of my stuff. And its loaded. You would have
to write Perl interface just to simplify all the low level tools added.

So what?
The engine has been re-written.

So what?
It does any markup.

Great for you. But what does that have to do with context-sensitive
languages and regular parsers?
Traps errors better than,
well... better than any parser that ever was.

So what?
Parsing markup is the easiest thing in
the world to do.

Maybe, but so what?
Trapping errors isin't so easy. My Perl regular expression engine is the
best in the world, its better than C based code, much better.

Then maybe you can submit it to replace the existing RE engine in perl?
You live in a fantacy world, and have no knowledge of what markup is. Only in the vaguest
sence.

Its not Parsing I am promoting, my power is in my parsing. I am promoting my tools and
nothing else.

So what?
And I have some very powerful tools I am introducing in version 2.

So what?
WHAT, YOU WANT TO PARSE HTML WITH THE SIMPLEST REGULAR EXPRESSION ???????
Simple, and stupid, and the most basic!!!!

Not possible. As has been _PROVEN_ in the past 4 decades many times over
you cannot parse a context-sensitive language with regular expressions.
If a language can be parsed with REs then it is a regular language. If
it is not a regular language, then it cannot be parsed with RE.
That's where the name regular expression originates.

If you want to disprove Chomsky then please go ahead. If you succeed
then the Turing Award is within your reach.
I was hoping not to have to do this. There unique examples of the power in the
tools when I post version 2. Posted below is just simple regular expression.

And where is the computational logic that implements the
context-sensitive part of the parser?
Why do you even try to test me? What are you afraid of?

sln/aka ROBIC0

robic0, robic0, .... somehow that rings a bell. Indeed, there was that
troll who infested this NG a few years ago:
http://groups.google.com/groups?as_q=robic0+and+PLONK&as_ugroup=comp.lang.perl.misc

I thought I smelled the same stench of clueless ignorance again.

*PLONK*

jue
 
S

sln


maybe I should have put an 'S' on the end of this
Not possible. As has been _PROVEN_ in the past 4 decades many times over
you cannot parse a context-sensitive language with regular expressions.
If a language can be parsed with REs then it is a regular language. If
it is not a regular language, then it cannot be parsed with RE.
That's where the name regular expression originates.

robic0, robic0, .... somehow that rings a bell. Indeed, there was that
troll who infested this NG a few years ago:
http://groups.google.com/groups?as_q=robic0+and+PLONK&as_ugroup=comp.lang.perl.misc

I thought I smelled the same stench of clueless ignorance again.

*PLONK*

jue

You are indeed an utter, and complete moron!

sln
 
S

sln

Hi,
I am parsing an .HTML file that contains following example code:

<div>
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left"><span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Normal Text Arial 12
Black before bullets.</span></p>
<ul>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">Bullet1: If you want to convert bitmap
images Single Line.</span></li>

<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">Bullet2: D you want to convert </span>
<span style="font-weight:bold;font-size:13pt;font-family:'Times
New Roman';color:#ff0000" xml:lang="en-US" lang="en-US">Times New
Roman Bold Red 13</span><span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US"> like BMP, JPG?</span></li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet3 bold:</span>
<span style="font-size:12pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US"> If you want to convert bitmap images like BMP, JPG</span>
</li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet4 bold 14: </span>
<span style="font-size:14pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US">If you want to convert bitmap images like BMP, JPG 2
lines.</span></li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">Bullet4
bold 14 all Red: </span><span style="font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">If you
want to convert bitmap images like BMP, JPG.</span></li>

<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet4 bold 14 Black: </span>
<span style="font-size:14pt;font-family:'Arial';color:#0000ff"
xml:lang="en-US" lang="en-US">Blue If you want to convert bitmap. </span>
<span style="font-size:16pt;font-family:'Arial';color:#008000"
xml:lang="en-US" lang="en-US">Green 16 images like BMP, JPG.</span>
</li>
</ul>
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left"><span style="font-size:14pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">Normal
Text Red Arial 14 after bullets.</span></p>
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left;margin-left:0.2500in">
<span style="font-weight:bold;font-size:14pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">&nbsp;</span></p>
<p dir="ltr" style="text-align:left"></p>
<p></p>
I am trying to parse all the <p>, <ol> and <ul> tags but couldn't
succeed yet.
I am trying following Regular Expression(RE):
"(<[pP][^>]*>(.*)</[pP]>)|(<[oO][lL][^>]+>(.*)</[oO][lL]>)|(<[uU][lL]
[^>]+>(.*)</[uU][lL]>)"

I am using preg_match_all(). Remember I am working in PHP.
If any one can help me, I will be very grateful to him/her. I need its
solution urgent.

Couple of solutions. This module shown here is not out yet.
When it is, it can not only get what you need quickly but you can edit
and reconstruct it to a file. Its also a quick way to chop up code source
and can be passed to xml-simple.

Using your source html, here is some sample code and output.
There are three samples separated by ###'s.

sln


############################################################################
# Capture form: 'p', 'ol' or 'ul' tag is buffer: <tag> tag_data </tag>
# Use sequence to reconstruct original source
# ---------------------------------------------

use strict;
use warnings;

use RXParse; # VERSIN 2

my $p = new RXParse();

$p->setMode( 'html' => 1, 'resume_onerror'=> 1 );

my $fname = 'c:\temp\newsgrp.xml';
open my $fh_xml, $fname or die "can't open $fname...";

my %oldh = $p->setHandlers('start' => \&starth, 'end' => \&endh);


sub starth
{
my ($obj, $el, $term, @attr) = @_;
my $buffer = lc($el);
if ($buffer eq 'p' || $buffer eq 'ol' || $buffer eq 'ul')
{
$obj->CaptureOn( $buffer );
$obj->CaptureOn( $buffer."_data", 1 );
}
# optional, call old handler
$oldh{'start'}($obj, $el, $term, @attr );
}
sub endh
{
my ($obj, $el, $term) = @_;
my $buffer = lc($el);
if ($buffer eq 'p' || $buffer eq 'ol' || $buffer eq 'ul')
{
$obj->CaptureOff( $buffer."_data" );
$obj->CaptureOff( $buffer, 1 );
}
# optional, call old handler
$oldh{'end'}($obj, $el, $term );
}

$p->CaptureOn('ALL');

my $parse_ln = "";
$parse_ln = join ('', <$fh_xml>); # join file data

my $parse_errors = $p->parse(\$parse_ln); # or pass in $fh_xml

$p->CaptureOff('ALL');

$p->DumpCaptureBuffs();

close $fh_xml;

print STDERR "Parse errors = $parse_errors\n";


__END__




BUFFER: all
=====================================
index seqence
----- --------
[0] 1 <div>

[1] -2
[2] 5

[3] -6
[4] 9

[5] -10
[6] 13

[7] -14
[8] 17

[9] -18
[10] 21

[11] -22
[12] 25
</div>



BUFFER: p
=====================================
index seqence
----- --------
[0] 2 <p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left">
[1] -3
[2] 4 </p>
[3] 10 <p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left">
[4] -11
[5] 12 </p>
[6] 14 <p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left;margin-left:0.2500in">
[7] -15
[8] 16 </p>
[9] 18 <p dir="ltr" style="text-align:left">
[10] -19
[11] 20 </p>
[12] 22 <p>
[13] -23
[14] 24 </p>



BUFFER: p_data
=====================================
index seqence
----- --------
[0] 3 <span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Normal Text Arial 12
Black before bullets.</span>
[1] 11 <span style="font-size:14pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">Normal
Text Red Arial 14 after bullets.</span>
[2] 15
<span style="font-weight:bold;font-size:14pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">&nbsp;</span>
[3] 19 undefined
[4] 23 undefined



BUFFER: ul
=====================================
index seqence
----- --------
[0] 6 <ul>
[1] -7
[2] 8 </ul>



BUFFER: ul_data
=====================================
index seqence
----- --------
[0] 7
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">Bullet1: If you want to convert bitmap
images Single Line.</span></li>

<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">Bullet2: D you want to convert </span>
<span style="font-weight:bold;font-size:13pt;font-family:'Times
New Roman';color:#ff0000" xml:lang="en-US" lang="en-US">Times New
Roman Bold Red 13</span><span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US"> like BMP, JPG?</span></li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet3 bold:</span>
<span style="font-size:12pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US"> If you want to convert bitmap images like BMP, JPG</span>
</li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet4 bold 14: </span>
<span style="font-size:14pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US">If you want to convert bitmap images like BMP, JPG 2
lines.</span></li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">Bullet4
bold 14 all Red: </span><span style="font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">If you
want to convert bitmap images like BMP, JPG.</span></li>

<li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;<span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet4 bold 14 Black: </span>
<span style="font-size:14pt;font-family:'Arial';color:#0000ff"
xml:lang="en-US" lang="en-US">Blue If you want to convert bitmap. </span>
<span style="font-size:16pt;font-family:'Arial';color:#008000"
xml:lang="en-US" lang="en-US">Green 16 images like BMP, JPG.</span>
</li>



##############################################################
# Capture form: tag is buffer "<tag> data </tag>"
# Use sequence to reconstruct original source
# ---------------------------------------------

use strict;
use warnings;

use RXParse; # VERSIN 2

my $p = new RXParse();

$p->setMode( 'html' => 1, 'resume_onerror'=> 1 );

my $fname = 'c:\temp\newsgrp.xml';
open my $fh_xml, $fname or die "can't open $fname...";

my %oldh = $p->setHandlers('start' => \&starth, 'end' => \&endh, 'captnotify' => \&cnotify);

my %closetags = ('br'=> '', 'img'=>'', 'meta'=>'', 'link'=> '', 'input'=>'');

sub cnotify
{
my ($obj, $buffer) = @_;
if (exists $closetags{$buffer})
{
$obj->CaptureOff( $buffer );
}
}


sub starth
{
my ($obj, $el, $term, @attr) = @_;
my $buffer = lc($el);
$obj->CaptureOn( $buffer );
# optional, call old handler
$oldh{'start'}($obj, $el, $term, @attr );
}
sub endh
{
my ($obj, $el, $term) = @_;
my $buffer = lc($el);
$obj->CaptureOff( $buffer, 1 );
# optional, call old handler
$oldh{'end'}($obj, $el, $term );
}

$p->CaptureOn('ALL');

my $parse_ln = "";
$parse_ln = join ('', <$fh_xml>); # join file data

my $parse_errors = $p->parse(\$parse_ln); # or pass in $fh_xml

$p->CaptureOff('ALL');

$p->DumpCaptureBuffs();

close $fh_xml;

print STDERR "Parse errors = $parse_errors\n";


__END__




BUFFER: all
=====================================
index seqence
----- --------
[0] 1
[1] -2
[2] 59 undefined



BUFFER: ul
=====================================
index seqence
----- --------
[0] 7 <ul>

[1] -8
[2] 11


[3] -12
[4] 19

[5] -20
[6] 25

[7] -26
[8] 31

[9] -32
[10] 37


[11] -38
[12] 45
</ul>



BUFFER: div
=====================================
index seqence
----- --------
[0] 2 <div>

[1] -3
[2] 6

[3] -7
[4] 46

[5] -47
[6] 50

[7] -51
[8] 54

[9] -55
[10] 56

[11] -57
[12] 58
</div>



BUFFER: p
=====================================
index seqence
----- --------
[0] 3 <p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left">
[1] -4
[2] 5 </p>
[3] 47 <p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left">
[4] -48
[5] 49 </p>
[6] 51 <p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left;margin-left:0.2500in">

[7] -52
[8] 53 </p>
[9] 55 <p dir="ltr" style="text-align:left"></p>
[10] 57 <p></p>



BUFFER: li
=====================================
index seqence
----- --------
[0] 8 <li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;
[1] -9
[2] 10 </li>
[3] 12 <li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;
[4] -13
[5] 14

[6] -15
[7] 16 undefined
[8] -17
[9] 18 </li>
[10] 20 <li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;
[11] -21
[12] 22

[13] -23
[14] 24
</li>
[15] 26 <li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;
[16] -27
[17] 28

[18] -29
[19] 30 </li>
[20] 32 <li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;
[21] -33
[22] 34 undefined
[23] -35
[24] 36 </li>
[25] 38 <li class="html_preformatted" dir="ltr" style="text-
align:left">&nbsp;
[26] -39
[27] 40

[28] -41
[29] 42

[30] -43
[31] 44
</li>



BUFFER: span
=====================================
index seqence
----- --------
[0] 4 <span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Normal Text Arial 12
Black before bullets.</span>
[1] 9 <span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">Bullet1: If you want to convert bitmap
images Single Line.</span>
[2] 13 <span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">Bullet2: D you want to convert </span>
[3] 15 <span style="font-weight:bold;font-size:13pt;font-family:'Times
New Roman';color:#ff0000" xml:lang="en-US" lang="en-US">Times New
Roman Bold Red 13</span>
[4] 17 <span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US"> like BMP, JPG?</span>
[5] 21 <span style="font-weight:bold;font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet3 bold:</span>
[6] 23 <span style="font-size:12pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US"> If you want to convert bitmap images like BMP, JPG</span>
[7] 27 <span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet4 bold 14: </span>
[8] 29 <span style="font-size:14pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US">If you want to convert bitmap images like BMP, JPG 2
lines.</span>
[9] 33 <span style="font-weight:bold;font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">Bullet4
bold 14 all Red: </span>
[10] 35 <span style="font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">If you
want to convert bitmap images like BMP, JPG.</span>
[11] 39 <span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">Bullet4 bold 14 Black: </span>
[12] 41 <span style="font-size:14pt;font-family:'Arial';color:#0000ff"
xml:lang="en-US" lang="en-US">Blue If you want to convert bitmap. </span>
[13] 43 <span style="font-size:16pt;font-family:'Arial';color:#008000"
xml:lang="en-US" lang="en-US">Green 16 images like BMP, JPG.</span>
[14] 48 <span style="font-size:14pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">Normal
Text Red Arial 14 after bullets.</span>
[15] 52 <span style="font-weight:bold;font-size:14pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">&nbsp;</span>


##############################################################
# Capture form: data is buffer <tag> "data" </tag>
# Use sequence to reconstruct original source
# ---------------------------------------------

use strict;
use warnings;

use RXParse; # VERSIN 2

my $p = new RXParse();

$p->setMode( 'html' => 1, 'resume_onerror'=> 1 );

my $fname = 'c:\temp\newsgrp.xml';
open my $fh_xml, $fname or die "can't open $fname...";

my %oldh = $p->setHandlers('start' => \&starth, 'end' => \&endh);

my %closetags = ('br'=> '', 'img'=>'', 'meta'=>'', 'link'=> '', 'input'=>'');


sub starth
{
my ($obj, $el, $term, @attr) = @_;
my $buffer = lc($el);
if (!exists $closetags{$buffer})
{
$obj->CaptureOn( $buffer, 1 );
}
# optional, call old handler
$oldh{'start'}($obj, $el, $term, @attr );
}
sub endh
{
my ($obj, $el, $term) = @_;
my $buffer = lc($el);
$obj->CaptureOff( $buffer );
# optional, call old handler
$oldh{'end'}($obj, $el, $term );
}

$p->CaptureOn('ALL');

my $parse_ln = "";
$parse_ln = join ('', <$fh_xml>); # join file data

my $parse_errors = $p->parse(\$parse_ln); # or pass in $fh_xml

$p->CaptureOff('ALL');

$p->DumpCaptureBuffs();

close $fh_xml;

print STDERR "Parse errors = $parse_errors\n";


__END__



BUFFER: all
=====================================
index seqence
----- --------
[0] 1 <div>
[1] -2
[2] 59 </div>



BUFFER: ul
=====================================
index seqence
----- --------
[0] 7
<li class="html_preformatted" dir="ltr" style="text-
align:left">
[1] -8
[2] 11 </li>

<li class="html_preformatted" dir="ltr" style="text-
align:left">
[3] -12
[4] 19 </li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">
[5] -20
[6] 25 </li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">
[7] -26
[8] 31 </li>
<li class="html_preformatted" dir="ltr" style="text-
align:left">
[9] -32
[10] 37 </li>

<li class="html_preformatted" dir="ltr" style="text-
align:left">
[11] -38
[12] 45 </li>



BUFFER: div
=====================================
index seqence
----- --------
[0] 2
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left">
[1] -3
[2] 6 </p>
<ul>
[3] -7
[4] 46 </ul>
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left">
[5] -47
[6] 50 </p>
<p class="html_preformatted" awml:style="HTML Preformatted"
dir="ltr" style="text-align:left;margin-left:0.2500in">
[7] -51
[8] 54 </p>
<p dir="ltr" style="text-align:left">
[9] -55
[10] 56 </p>
<p>
[11] -57
[12] 58 </p>



BUFFER: p
=====================================
index seqence
----- --------
[0] 3 <span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">
[1] -4
[2] 5 </span>
[3] 47 <span style="font-size:14pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">
[4] -48
[5] 49 </span>
[6] 51
<span style="font-weight:bold;font-size:14pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">
[7] -52
[8] 53 </span>
[9] 55 undefined
[10] 57 undefined



BUFFER: li
=====================================
index seqence
----- --------
[0] 8 &nbsp;<span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">
[1] -9
[2] 10 </span>
[3] 12 &nbsp;<span style="font-size:12pt;font-family:'Arial'"
xml:lang="en-US" lang="en-US">
[4] -13
[5] 14 </span>
<span style="font-weight:bold;font-size:13pt;font-family:'Times
New Roman';color:#ff0000" xml:lang="en-US" lang="en-US">
[6] -15
[7] 16 </span><span style="font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">
[8] -17
[9] 18 </span>
[10] 20 &nbsp;<span style="font-weight:bold;font-size:12pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">
[11] -21
[12] 22 </span>
<span style="font-size:12pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US">
[13] -23
[14] 24 </span>

[15] 26 &nbsp;<span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">
[16] -27
[17] 28 </span>
<span style="font-size:14pt;font-family:'Arial'" xml:lang="en-US"
lang="en-US">
[18] -29
[19] 30 </span>
[20] 32 &nbsp;<span style="font-weight:bold;font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">
[21] -33
[22] 34 </span><span style="font-size:16pt;font-
family:'Arial';color:#ff0000" xml:lang="en-US" lang="en-US">
[23] -35
[24] 36 </span>
[25] 38 &nbsp;<span style="font-weight:bold;font-size:14pt;font-
family:'Arial'" xml:lang="en-US" lang="en-US">
[26] -39
[27] 40 </span>
<span style="font-size:14pt;font-family:'Arial';color:#0000ff"
xml:lang="en-US" lang="en-US">
[28] -41
[29] 42 </span>
<span style="font-size:16pt;font-family:'Arial';color:#008000"
xml:lang="en-US" lang="en-US">
[30] -43
[31] 44 </span>



BUFFER: span
=====================================
index seqence
----- --------
[0] 4 Normal Text Arial 12
Black before bullets.
[1] 9 Bullet1: If you want to convert bitmap
images Single Line.
[2] 13 Bullet2: D you want to convert
[3] 15 Times New
Roman Bold Red 13
[4] 17 like BMP, JPG?
[5] 21 Bullet3 bold:
[6] 23 If you want to convert bitmap images like BMP, JPG
[7] 27 Bullet4 bold 14:
[8] 29 If you want to convert bitmap images like BMP, JPG 2
lines.
[9] 33 Bullet4
bold 14 all Red:
[10] 35 If you
want to convert bitmap images like BMP, JPG.
[11] 39 Bullet4 bold 14 Black:
[12] 41 Blue If you want to convert bitmap.
[13] 43 Green 16 images like BMP, JPG.
[14] 48 Normal
Text Red Arial 14 after bullets.
[15] 52 &nbsp;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top