I'd like to add a google calendar gadget to a webpage.
This page shows the gadget http://www.google.com/ig/directory?synd=open&url=http://www.google.com/ig/modules/calendar3.xml
The linked page includes code to paste into a webpage http://www.gmodules.com/ig/creator?synd=open&url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fcalendar3.xml&lang=en
I tried creating a simple page:
<!DOCTYPE html>
<html>
<head>
<title>Calendar</title>
</head>
<body>
*<script src="//www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/calendar3.xml&up_calendarFeeds=&up_calendarColors=&up_showDatepicker=1&up_showEmptyDays=0&up_showExpiredEvents=1&synd=open&w=320&h=447&title=Google_Calendar&lang=en&country=ALL&border=%23ffffff%7C3px%2C1px+solid+%23999999&output=js"></script>*
</body>
</html>
but the resulting page does not display a calendar, just '**'. I'm storing this page in a local file (not on a server) and opening in a browser.
Any suggestions, including another way to get the same functionality?