I suspect the problem is with the following line in your page:
<script src='http://wordpress.com/remote-login.php?action=js&amp;host=fcboro.co.uk&amp;id=3632619&amp;t=1277746475&amp;back=fcboro.co.uk%2F'
type="text/javascript"></script>
The exact failure occurs a few lines lower, when a Javascript tries to run the method WPRemoteLogin()
. The error, in Internet Explorer 8, reads that an object is expected, which implies to me that either the WPRemoteLogin()
method itself does not exist, or a failure is occurring within it.
Neither IE's developer tools nor Firebug in Firefox was able to load the script I pointed out above. My suspicion is that the URL in that script may be off, and that may be what's actually causing the error. I'd start by ensuring I had the correct URL there, and then progress debugging from that point.
If the URL is indeed correct, then I'd start looking for the object which that call is missing. Attempt to load and retrieve that Javascript, and search for function WPRemoteLogin
. From there, you should be able to trace the code out to the exact point of failure.