tell application "Finder" run application "Netscape NavigatorÅ 2.01" set counter to 0 set workFlder to choose folder with prompt "Wohin (EMPTY DRIN!!!) ?" set searchString to (text returned of (display dialog "SEARCH ?" default answer "Berlin")) set theURL to ("http://nscp.snap.com/search/web/results/1,33,nscp-0,00.html?tag=st.sn.sr.1.pg&keyword=" & searchString & "&start=1&dm=0") with timeout of 45 seconds tell application "Netscape NavigatorÅ 2.01" to OpenURL (theURL) to window 1 end timeout set availText to (text returned of (display dialog "__PAGES__ AVAILABLE ?" default answer "1")) set availPages to (availText as number) repeat with I from 1 to availPages by 1 try set spareFile to duplicate (file "EMPTY.html" of workFlder) set workName to ("NSCP" & I & ".html") select spareFile set name of selection to workName set saveFile to ((workFlder as text) & (workName)) on error end try with timeout of 120 seconds try set theURL to ("http://nscp.snap.com/search/web/results/1,33,nscp-0,00.html?tag=st.sn.sr.1.pg&keyword=" & searchString & "&start=" & counter & "&dm=0") tell application "Netscape NavigatorÅ 2.01" to GetURL (theURL) to file saveFile on error end try end timeout end repeat end tell