Clip what you need and keep it in a custom data structure, or export it to scaled down HTML. You'll want to do something like bind (if you'll pardon my vbscript, it should give you an idea of how the object works):
Code:
objIE = CreateObject("InternetExplorer.Application")
strHtml = objIE.Document.Body.InnerHTML
strText = objIE.Document.Body.OuterHTML
intLenHours = 50 ' number of characters to copy in the hours section
strHours = Mid(strText, InStr(strText,"Hours"), intLenHours)
Set objIE = Nothing
Or something like that. objIE.Document.Body.InnerHTML gives you the HTML source of the page, objIE.Document.Body.OuterHTML gives you the rendered text display of the page. I'm working on this for my (GPL, darnit) weather bar.