// wind.js Define the Wind cell on the form
var calm=light=breezy=strong=" "; 
 if ( 20 <= wind              ) strong="checked"; 
 if ( 10 <= wind && wind < 20 ) breezy="checked";
 if (  5 <= wind && wind < 10 )  light="checked"; 
 if (               wind < 5  )   calm="checked";
if(debug)alert( "weather.js:  c="+ calm+" l="+light+" b="+breezy+" s="+strong);

document.write(
"<td valign=top>"						+
"<center><a href=WindSpeed.html>wind</a></center> <small> "		+
"<nobr><input type=radio name=wind value=calm "   + calm   + ">calm</nobr> "		+
"<nobr><input type=radio name=wind value=light "  + light  + ">light</nobr> "	+
"<nobr><input type=radio name=wind value=breezy " + breezy + ">breezy</nobr> "	+
"<nobr><input type=radio name=wind value=strong " + strong + ">strong</nobr> "	);
// 11/19/05 wind speed missing !
if ( wind != "" ) document.write(
"&nbsp;&nbsp;&nbsp;at&nbsp;"+ wind +"&nbsp;mph <input type=hidden name=windspeed value="+ wind +">  "    );
