This is very possible but how it gets done is very, very specific to the web site your going, just by way of an example heres a Kixscript that prompts you for a search term, then opens up IE and navigates to google, then automatically datafills the searchfield and clicks ok, then displays the results. How your site works will be totally different in terms of the field ID's and steps involved, but here is a start:

code:
Break On

Do
?"Enter search term> " gets $term
Until $Term

$URL = "http://216.239.39.101/"

$IE = CreateObject("InternetExplorer.Application")

$IE.Visible = 1

$IE.Navigate($URL)

While $IE.Busy and $IE.ReadyState <> 4 and @ERROR = 0 Loop

$IE.Document.getElementById("q").Value = $Term

$IE.Document.GetElementById("BtnG").Click()

Exit 0

-Shawn

[ 04. October 2003, 21:28: Message edited by: Shawn ]