<!--
function GetThisMonth() {
// This function returns the href string for the current month
// levelnum indicates nesting of calling page where 0 is the site index

var currentdate=new Date();
var currentmonth = currentdate.getMonth() + 1;
var currentyear = currentdate.getFullYear();
// I find it easier to think of months from 1 to 12 rather than 0 to 11
refstr = '<a href="/calendar.php?month=';
refstr= refstr + currentmonth + '&year='+currentyear+'">Calendar</a>';
document.write (refstr);
//  return (refstr);
}
//-->
