Click on a link somewhere on a page that is not a conventional link

Hi everybody,

this is the script that I am using to log into my account, and it works, but my problem is that I need to click on the page to pull up my streaming quotes, is there a way to be able to position the cursor on that link by using coordinates? (or by forcing safari to open up in certain dimentions and then have the cursor click somewhere? (since its not a regular link its URL is just the home url plus a “#” at the end.

tell application “Safari”
activate
make new document
set URL of document 1 to “https://trading.scottrade.com/default.aspx
end tell
if page_loaded(5) then
tell application “System Events”
tell application process “Safari”
keystroke tab
keystroke return
end tell
end tell
else
display alert “The URL Has Not Loaded.”
end if

on page_loaded(timeout_value)
delay 2
tell application “Safari”
repeat with i from 1 to the timeout_value
if (do JavaScript “document.readyState” in document 1) is “complete” then return true
delay 1
end repeat
end tell
return false
end page_loaded

thank you.

any help really appricated