Convert RSS Items (HTML) to Bookmarks?

Does anyone know of an Applescript that will take a selection of HTML items (from a DT RSS feed) and convert them (or create) Bookmarks, at the same location?

Here’s a basic script:


tell application id "com.devon-technologies.thinkpro2"
	set theSelection to the selection
	repeat with theRecord in theSelection
		set theURL to URL of theRecord
		if theURL is not "" then create record with {name:(name of theRecord) as string, type:bookmark, URL:theURL} in current group
	end repeat
end tell

Thanks!