// Get the element
function getObjectByID(id) {
	if (document.getElementById)
		return document.getElementById(id);
	else if (document.all)
		return document.all[id];
	return null;
}

function setCalendar() {
	var c =getObjectByID('graGoogleCalendar');
	if (c) {
		c.innerHTML = "<h2 class=\"title\" style=\"border: 1px solid #efefef; background: #efefef; color: black; text-weight: bold; padding: .1em; text-align: center; letter-spacing: 2px; word-spacing:3px; font-weight: bold; font-size: 100%; margin-bottom: 0px; border-bottom: none;\"><big>GRA Events Calendar</big></h2></h3><iframe src=\"http://www.google.com/calendar/embed?src=gra.admin%40gmail.com&amp;title=GRA%20Events&amp;chrome=NAVIGATION&amp;mode=AGENDA&amp;height=250&amp;epr=1&amp;wkst=2&amp;hl=en&amp;bgcolor=%23efefef\" style=\" border-width:0\" width=\"420\" frameborder=\"1\" height=\"250\"></iframe>";
	}
}