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('<a  href=\"http://www.exactet.ca/weatherDetails.asp?loc=mcarthurisland\" style=\"cursor: pointer;\"><div style=\"POSITION: relative;\">			<img src=\"http://www.exactet.ca/im/button/newbuttons/images/leader2.gif\" border=\"0\" alt=\"\" usemap=\"#leader_Map\"> <map name=\"leader_Map\">				<area shape=\"RECT\" alt=\"\" coords=\"0,0,73,60\" href=\"http://www.exactet.ca/weatherDetails.asp?loc=mcarthurisland\">			</map>			<DIV STYLE=\"Z-INDEX: 1; LEFT: 75px; WIDTH: 6px; COLOR: black; POSITION: absolute; TOP: -3px; HEIGHT: 8px; TEXT-ALIGN: center\"				id=\"Div3\">				<DIV STYLE=\"FONT-SIZE: 18pt; PADDING-TOP: 0px\"><B><SUP><SPAN STYLE=\"FONT-SIZE: 16pt\">&deg;</SPAN></SUP></B></DIV>			</DIV>			<DIV STYLE=\"FONT-SIZE: 30pt; Z-INDEX: 1; LEFT: 37px; WIDTH: 58px; COLOR: black; POSITION: absolute; TOP: 4px; HEIGHT: 40px; TEXT-ALIGN: center\"				id=\"DIV1\">				<DIV STYLE=\"FONT-SIZE: 22pt; PADDING-TOP: 0px\"><B>-2</B></DIV>			</DIV>			<DIV STYLE=\"Z-INDEX: 1; LEFT: 90px; WIDTH: 36px; COLOR: black; POSITION: absolute; TOP: 2px; HEIGHT: 36px\"				id=\"Div2\">				<DIV style=\"PADDING-TOP: 0px\"><IMG alt=\"\" src=\"http://www.exactet.ca/im/button/newbuttons/small/night2.jpg\" border=\"0\"></DIV>			</DIV>		</div></a>');
document.write(' ');


		
		

		

