city = 'Fresno'; 
 temp = '68'; 
 cond = 'Haze'; 
image = '/images/weather/foggy.gif'
function printWeatherBug()
//function printJustWeather()
{
  document.write("<table border='0' cellpadding='0' cellspacing='0' width='120'>");
  document.write("<tr><td><center>");
  document.write(" <span class='wx_txt'>Temp</span><br>");
  document.write("<img src='http://www.fresnobee.com/images/weathergraphics/images/icons/grey_30x30/"+icon+".gif' align='right'>")
  document.write("<span class='wx_dig'>" + temperature + "&deg; F</span>");
  document.write("<br>");
  document.write('<a href="http://www.fresnobee.com/weather/" class="wx_txt">' + mywzonename + '</a></center></td></tr>');
  document.write('<tr><td><center><a href="javascript:setwzone();" class="wx_txt">Change location</a></center></td></tr>');
  document.write("</table>");
}

function printJustWeather()
{
 printWeatherBug();
}
printJustWeather();

