function LastMsg(){
	update = new Date(document.lastModified)
	theMonth = update.getMonth() + 1;
	theDate = update.getDate();
	theYear = update.getYear();
	if (navigator.appName == "Netscape") {
 	  if (theYear >= 100) {
 	     theYear = theYear - 100;
 	     if (theYear < 10) {
	         theyear = "0" + theyear;
	      }
 	  }
	}
	document.writeln("Page Last Updated: " + theYear + "/"  + theMonth + "/" + theDate + " ");
}

function tmv(ID){
	document.writeln("<button onClick=treeMenu(\"" + ID + "\")></button>");
}