it seems I have run into a problem with Internet Explorer 7. I have an html page that has links to files on another server. The server I am linking to checks the referrer of
I find this solution at http://dracoblue.net/dev/referer-with-documentlocation-is-broken-in-internet-explorer/145/ , but i haven't tried myself
function goto(url) { var referLink = document.createElement('a'); referLink.href = url; document.body.appendChild(referLink); referLink.click(); }