function get_weather(zipCode) {
	var urlName = "http://www2.sherwin-williams.com/Global/inc/weatherframe.asp?query=" + zipCode;
	varw=window.open(urlName,"weather","left=0,top=25,height=225,width=270,resizable,scrollbars");
}

get_local_weather = function() {
  get_weather('44115');
  return false;
}

function start_load() {
  if (!document.getElementsByTagName) return false;
  document.getElementById('weather').getElementsByTagName('a')[0].onclick = get_local_weather;
}

addLoadEvent(start_load);

