The problem with the up-arrow is a classic Firefox vs. IE issue, or more precisely, the fact that Firefox handles HTML and such more strictly than IE does.
In the HTML standards, a hyperlink such as:
Code:
<a href="http://www.radioreference.com/forums/showthread.php?p=138643#top">Go to the top</a>
requires a corresponding anchor (<A>) tag with the "name" attribute, on the same page, such as the bolded parts of the code shown below (the non-bolded is a pre-existing part of the page, as per View>Source):
Code:
[b]<a name="top">[/b]<IMG src="/images/header/rr_head.gif" alt="" border="0" hspace="0">[b]</a>[/b]
The "name" attribute has to be a non-blank tag closed with the </A> tag.
The page you are viewing right now has no such "name" attribute.
I suspect the reason IE works is that IE has been designed to reload the entire page, position the viewer at the top of the page, and then locate the hyperlink; while Firefox needs to find the hyperlink first, and won't bother reloading the page (thus never brings you back to the top of the page). The reason it would work if you open it in a new tab or window is because the new tab or window defaults to the top of the webpage.
My recommendation to make this work is for Lindsay to create an anchor tag with the NAME attribute of 'top', somewhere immediately after the 'body' tag is opened on the webpage. Were it me, I would make it around the <IMG> tag for the rr_head.gif image (the radio tower, etc., in the upper left).