 <!--
 var xmlhttp,alerted
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
  try {
  xmlhttp=new ActiveXObject("Msxml2.XMLHTTP")
 } catch (e) {
  try {
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
  } catch (E) {
   alert("You need a newer version of Internet Explorer")
  }
 }
@else
 alert("You need JScript version 5 or higher")
 xmlhttp=false
 alerted=true
@end @*/
if (!xmlhttp && !alerted) {
 try {
  xmlhttp = new XMLHttpRequest();
 } catch (e) {
  alert("You need to get Firefox or Mozilla or the latest Netscape")
 }
}
 var datafile = "http://www.tylertexasweather.com/1.txt";
 var pcolor = "green" ;
 xmlhttp.open("GET", datafile, false);
 xmlhttp.send(null);
  warninfo = xmlhttp.responseText;  
  if (warninfo == "No Warnings")
   {
 document.write('<font color="blue" size="5">Weather Warnings from the National Weather Service</font>')
 document.write('<br>')
 document.write('<center>')
 document.write('<font color="#FFFFFF" face="Arial">')
 document.write('<marquee width=520 height=25 direction=left bgcolor=0000ff>')
 document.write('No Current Warnings for the Tyler Texas Area')
 document.write('</marquee>')
 document.write('</font>')
 document.write('<br>')
 document.write('<table width="520">')
 document.write('<tr>')
 document.write('<td height="3" align="center" bgcolor="#0000FF">')
 document.write('</td>')
 document.write('</tr>')
 document.write('</table>')
 document.write('</center>');
      }
 else
     {
 document.write('<font face="Comic Sans MS, Arial, Helvetica, sans-serif" color="red" size="5">Weather Warnings from the National Weather Service</font>')
 document.write('<br>')
 document.write('<table border="5" bordercolor="red">')
 document.write('<tr><th>')
 document.write('<applet code="ScrollItUp.class" archive="ScrollItUp.jar" width="500" height="153">')
 document.write('<param name="bgcolor" value=668899">')
 document.write('<param name="scrollbgcolor" value="ff0000">')
 document.write('<param name="outlinecolor" value="000000">')
 document.write('<param name="fontcolor" value="000000">')
 document.write('<param name="hovercolor" value="00ff00">')
 document.write('<param name="linkcolor" value="ff0000">')
 document.write('<param name="brakes" value="55">')
 document.write('<param name="fontface" value="arial">')
 document.write('<param name="fontstyle" value="plain">')
 document.write('<param name="fontbold" value="off">')
 document.write('<param name="fontsize" value="14">')
 document.write('<param name="textfile" value="1.txt">')
 document.write('<param name="margin" value="5">')
 document.write('Make sure that your browser is Java enabled...')
 document.write('</applet>')
 document.write('</tr>')
 document.write('</table>');
     } 
 // end hiding code -->
