var today = new Date();var Year = takeYear(today);var Month = leadingZero(today.getMonth()+1);var Day = leadingZero(today.getDate());var Hours = leadingZero(today.getHours());var Minutes = leadingZero(today.getMinutes());var Seconds = leadingZero(today.getSeconds());var ampm = "am";if (Hours == 0) Hours = 12;if (Hours > 11)	ampm = "pm";if (Hours > 12)	Hours -= 12;function takeYear(theDate){	x = theDate.getYear();	var y = x % 100;	y += (y < 38) ? 2000 : 1900;		y = y + '';	y = y.substring(2);		return y;}function leadingZero(nr){	if (nr < 10) nr = "0" + nr;	return nr;}document.write(' ');document.write('<div style=\"POSITION: relative;\"><img src=\"http://www.exactet.ca/im/button/newbuttons/images/box2.gif\" border=\"0\" alt=\"\"				usemap=\"#box2_Map\"> <map name=\"box2_Map\">					<area shape=\"RECT\" alt=\"\" coords=\"0,112,160,132\" href=\"http://www.theweathernetwork.com/weather/caon0100\">				<area shape=\"RECT\" alt=\"\" coords=\"0,0,159,111\" href=\"http://www.exactet.ca/weatherDetails.asp?loc=Burlington\">			</map>			<DIV STYLE=\"FONT-SIZE: 8pt; Z-INDEX: 1; LEFT: 8px; WIDTH: 90px; COLOR: black; POSITION: absolute; TOP: 15px; HEIGHT: 20px; TEXT-ALIGN: center\">				<DIV STYLE=\"PADDING-TOP: 0px;FONT-FAMILY: Arial;\">12/30/99 12:00 AM</DIV>			</DIV>			<DIV STYLE=\"Z-INDEX: 1; LEFT: 66px; WIDTH: 8px; COLOR: black; POSITION: absolute; TOP: 40px; HEIGHT: 8px; TEXT-ALIGN: center\"				id=\"Div5\">				<DIV STYLE=\"FONT-SIZE: 30pt; PADDING-TOP: 0px\"><B><SUP><SPAN STYLE=\"FONT-SIZE: 22pt\">&deg;</SPAN></SUP></B></DIV>			</DIV>			<DIV STYLE=\"Z-INDEX: 1; LEFT: 9px; WIDTH: 60px; COLOR: black; POSITION: absolute; TOP: 50px; HEIGHT: 40px; TEXT-ALIGN: center\"				id=\"DIV1\">				<DIV STYLE=\"FONT-SIZE: 30pt; PADDING-TOP: 0px\"><B>[AirTempAvgNoDecimal]</B></DIV>			</DIV>			<DIV STYLE=\"Z-INDEX: 1; LEFT: 2px; WIDTH: 76px; COLOR: black; POSITION: absolute; TOP: 94px; HEIGHT: 20px; TEXT-ALIGN: center\"				id=\"Div4\">				<DIV style=\"FONT-SIZE: 7pt;FONT-FAMILY: Arial; PADDING-TOP: 0px\">CELSIUS</DIV>			</DIV>			<DIV STYLE=\"Z-INDEX: 1; LEFT: 98px; WIDTH: 50px; COLOR: black; POSITION: absolute; TOP: 50px; HEIGHT: 45px\"				id=\"Div2\">				<DIV style=\"PADDING-TOP: 0px\"><img src=\"http://www.exactet.ca/im/button/newbuttons/2.jpg\" border=\"0\" alt=\"\"></DIV>			</DIV>			<DIV STYLE=\"Z-INDEX: 1; LEFT: 80px; WIDTH: 78px; COLOR: black; POSITION: absolute; TOP: 92px; HEIGHT: 20px; TEXT-ALIGN: center\"			id=\"Div3\">				<DIV style=\"PADDING-TOP: 0px;FONT-SIZE: 8pt;FONT-FAMILY: Arial;\"></DIV>			</DIV>			<DIV style=\"PADDING-TOP: 0px \">&nbsp;</DIV>		<a href=\"http://www.exactet.ca/weatherDetails.asp?loc=Burlington\" style=\"cursor: pointer; z-index: 2;\"><div style=\"z-index: 2; POSITION: absolute; top: 0; left: 0; width: 160px; height: 111px;"></div></a></div>			');document.write(' ');								
