function writeDateModifiedCopyright (time,copyright) {
	var days = new Array;
	var months = new Array;
	days[0] = "Sunday";
	days[1] = "Monday";
	days[2] = "Tuesday";
	days[3] = "Wednesday";
	days[4] = "Thursday";
	days[5] = "Friday";
	days[6] = "Saturday";
	months[0] = "January";
	months[1] = "February";
	months[2] = "March";
	months[3] = "April";
	months[4] = "May";
	months[5] = "June";
	months[6] = "July";
	months[7] = "August";
	months[8] = "September";
	months[9] = "October";
	months[10] = "November";
	months[11] = "December";
	var modDate = new Date(Date.parse(document.lastModified));
	if (modDate != 0) {
		var day = days[modDate.getDay()];
		var ndate = modDate.getDate();
		var month = months[modDate.getMonth()];
		var year = modDate.getYear();
		if (year < 1000) year = year + 1900;
		if (time) {
		    var hour = modDate.getHours().toString();
 			if (hour.length == 1) hour = "0" + hour; 
			var minute = modDate.getMinutes().toString();
			if (minute.length == 1) minute = "0" + minute;
			var second = modDate.getSeconds().toString();
			if (second.length == 1) second = "0" + second;
		}
    document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
		document.write("This page was last modified: ");
		document.write(day + " " + ndate + " " + month + " " + year + " ");
		if (time) {
		    document.write(hour + ":" + minute + ":" + second + " ");
		}
		if (copyright) {
		    document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
		    document.write("Copyright &copy; Qld Highlanders 2002-" + year + " ");
		    document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
		}
	}
}

function openURL(sURL, newWindow) {
  if (newWindow) {
    openWindow = window.open(sURL);
  } else {
    location = sURL;
  }
}
