Hi!
I need to retrieve information from a table in a HTML code.

The page i need to retrieve info from is not mine so i can't change the HTML code to make it solve my problem.

Here's an example of the HTML:
Code:
<html>
<head>
<title>Nana</title>
</head>
<body>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100&#37;>
<TR BGCOLOR=#505050><TD COLSPAN=2 CLASS=white>
<B>Character Information</B></TD></TR>
<TR BGCOLOR=#F1E0C6><TD WIDTH=20%>Name:</TD><TD>Name Value</TD></TR>
<TR BGCOLOR=#D4C0A1><TD>Sex:</TD><TD>Value of Sex</TD></TR>
</TABLE>
</body>
</html>
So what i need to do is get the value of the field 'Name' and the value of the row 'Sex'. How can i do this?

Thanks!
//Zeelia