Hello technica
This issue could come from the links names. Many spaces, some ':' or ',' etc... Such an adress could be seen as "illegal" with anything else than the pair IE + PC, because IE on a PC "escapes" the URL. IE on a Mac (and probably Safari dito) doesn't.
You could try to use the "escape" javascript function to transcode your links, within the "window.location.href=..." line :
---------------------
function go_review_menu() {
choice = document.gamereviews.review_id.selectedIndex;
if ( document.gamereviews.review_id[choice].value!= "")
window.location.href = escape(document.gamereviews.review_id[choice].value);
}
---------------------
JP
|