/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * KSN.com Affiliate Weather Export                                        *
 * Include other javascript source files                                   *
 * Content (c) 2006 SJL of Kansas                                          *
 * Author: Kevin White (kevin@ksn.com)                                     *
 * http://www.ksn.com/                                                     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

with (document) {
  writeln('<script language="JavaScript" src="http://www.ksn.com/bin/wx/wxdata.js"></script>');
}

function PutKSNWx() {

  ksnwx='<h2>KSN Weather</h2>';
  ksnwx+='<div id="weather">';
  ksnwx+='<div id="weatherLeft">';
  ksnwx+='<a href="http://www.ksn.com/weather/forecastw.html"><img src="' + WXicon[0] + '" width="44" height="48" vspace="2" hspace="2" border="0" alt="' + WXsky[0] + '"/></a>';
  ksnwx+='</div>';
  ksnwx+='<div id="weatherRight">';
  ksnwx+='<b>Wichita Weather</b> @ ' + WXforecastdate[0] + '<br/>';
  ksnwx+='<b>Temp:</b> ' + WXtempf[0] + '&deg;F<br/>';
  ksnwx+='<b>Wind:</b> ' + WXwind[0] + '<br/>' + WXchi[0];
  ksnwx+='</div>';
  ksnwx+='</div>';
  ksnwx+='<ul><li><a href="http://www.ksn.com/weather/forecastw.html">Detailed Wichita Forecast</a></li></ul>';
  document.write(ksnwx);
}

