The only change in the two files is one has the 'var location =' and ' " + location + " ' removed...
This is the code actually contained in wx9.html...
<script type="text/javascript">
<!--
var warning = "FLOOD WARNING";
var width = "550";
var location = "JACKSONVILLE, FL";
var link = "http://JaxWeather.net/JaxWeatherWarning.php";
var watchcolor = "#008080"; <!-- Background color for watches //-->
var watchfont = "#1CE6E6"; <!-- Font color for watches //-->
var warningcolor = "#FF3333"; <!-- Background color for warnings //-->
var warningfont = "#FFFFFF"; <!-- Font color for warnings //-->
var defaultcolor = "#FFFFFF"; <!-- Default background color //-->
var defaultfont = "#0000FF"; <!-- Default font color //-->
if (warning != "NO CURRENT ADVISORIES") {
if (warning.indexOf("WATCH") > 0) {
document.write("<table border='1' cellpadding='2' cellspacing='0' width=" + width + " bgcolor='" + watchcolor + "'><tr><td><marquee scrolldelay='125' width='" + width + "'><a href='" + link + "'><font face='verdana,arial' size='2' color='" + watchfont + "'>Jacksonville, FL - <b><span style='text-transform: uppercase'>FLOOD WARNING</span></b> ... [Click here for more]</marquee></font></a></td></tr></table><br>");
}
else if (warning.indexOf("WARNING") > 0) {
document.write("<table border='1' cellpadding='2' cellspacing='0' width=" + width + " bgcolor='" + warningcolor + "'><tr><td><marquee scrolldelay='125' width='" + width + "'><a href='" + link + "'><font face='verdana,arial' size='22' color='" + warningfont + "'>Jacksonville, FL - <b><span style='text-transform: uppercase'>FLOOD WARNING</span></b> ... [Click here for more]</marquee></font></a></td></tr></table><br>");
}
else {
document.write("<table border='1' cellpadding='2' cellspacing='0' width=" + width + " bgcolor='" + defaultcolor + "'><tr><td><marquee scrolldelay='125' width='" + width + "'><a href='" + link + "'><font face='verdana,arial' size='2' color='" + defaultfont + "'>Jacksonville, FL - <b><span style='text-transform: uppercase'>FLOOD WARNING</span></b> ... [Click here for more]</marquee></font></a></td></tr></table><br>");
}
}
//-->
</script>
Removing just that block allows the page to work... Placing it back breaks it again in FF?
If I mucked something above up please let me know LOL
-Bob