Func Parsehtml()
$htmlexist=InetGet("http://www.thesite.com/your.html", "C:\your dir\yourfile.html", 1); get and save file
if $htmlexist=1 then; checkpoint
$file=FileOpen("C:\auto\details.htm", 0); open the file
$line1=FileReadLine($file, 89); read the line you want by its number
$line11=StringReplace($line1, 'junk', "") replace junk with nothing. note that i used ' and not " in case you have " in the junk
fileclose($file)
endfunc
you continue to use with in the func the StringReplace function until your result is clean. usualy 2 sweeps will do it
cheers