// there are a BUNCH of conditions, always show  3: Clear and Rain and Condition 
// each condition's value is either checked or " "
if ( debug ) alert("condidions.js: "+Conditions+":");
condSymb="";
if ( Conditions == "Rain"  ) {Rain=checked; condSymb="&#X2602;";}
if ( Conditions == "Clear" ) Clear=checked;
document.write(
" <td valign=top align=center>					"+
"	<center><span style=color:blue>  				"+
" conditions</span></center>  		<small>                 	"+ 
" <nobr><INPUT type=radio name=conditions value=clear "+ Clear + " >Clear</nobr>"+
" <nobr><INPUT type=radio name=conditions value=rain  "+ Rain  + " >Rain"+
" <nobr><INPUT type=radio name=conditions value=lightRain  "+ LightRain  + " >Light Rain");

if ( Rain !== checked &&  Clear !== checked) document.write(
" <nobr><INPUT type=radio name=conditions value="+ Conditions  +" checked >"+ Conditions +"</nobr>" );
//    don't be silly and display snow in the summer

if( temperature < "39") 	document.write(
" <nobr><INPUT type=radio name=skies value=SNOW "+ Snow +" >snow<span style=font-size:300%;>&#x2603;</span></nobr>");



// "                                          <span style=font-size:300%;>&#x2602;</span></nobr>");
