function ChoosePicture() {
	var now = new Date();
	var minutes = now.getMinutes();
	minutes = "" + minutes;
	var lastDigit = "";
	
	lastDigit = minutes.substring(minutes.length-1,minutes.length);
	
	//Text for testing purposes
	
	//document.write("<br>Minutes: " + minutes + "<br>");
	//document.write("Last Digit: " + lastDigit);
	
	if (lastDigit == "5" || lastDigit == "6" || lastDigit =="7" || lastDigit =="8" || lastDigit =="9")
		document.write("<p style='margin: 0;'><img src='/graphics/watch_online2008.gif' border='0' usemap='#Map'></p>" +
		"<map name='Map' id='Map'>" +
		"<area shape='poly' coords='0,0,0,54,125,54,125,66,189,66,190,0' href='#' onClick=\"MM_openBrWindow('webcast-info.cfm','','width=520,height=430')\" />" +
		"<area shape='poly' coords='0,55,124,55,124,67,188,67,189,123,0,124' href='/documents/smbl500_can_PR.pdf' target='_blank' />" +
		"</map>");
	
	else
		document.write("<p style='margin: 0;'><img src='/graphics/watch_online_british2008.gif' border='0' usemap='#Map'></p>" +
		"<map name='Map' id='Map'>" +
		"<area shape='poly' coords='0,0,0,54,125,54,125,66,189,66,190,0' href='#' onClick=\"MM_openBrWindow('webcast-info.cfm','','width=520,height=430')\" />" +
		"<area shape='poly' coords='0,55,124,55,124,67,188,67,189,123,0,124' href='/documents/smbl500_brit_PR.pdf' target='_blank' />" +
		"</map>");
}
