Script for posting webpages to Twitter

tell application "DEVONthink 3"
	do JavaScript "open('http://twitter.com/intent/tweet?url='+encodeURIComponent(window.location.href)+'&text='+encodeURIComponent(document.title),'targetname','height=300,width=600,left=200,top=100,menubar=no,status=no,titlebar=no,toolbar=no,resizable=no,scrollbars=no');" in think window 1
end tell

Nice. Please note that…

tell application id "DNtp"

…is recommended to make scripts compatible to all versions/editions (including future ones).

Interesting. Is this intended for a specific use?