//  Added this file to make updating the "Last Updated" line at the bottom of web pages easier and all the same
//  November 26, 2002
//
//  In calling webpage, before the <body> tag put the following call to this file
//  <script language="Javascript" scr="lastupdated.js"></script>
//
// To call the function use the following
// <script language="Javascript">
//          updated();
// </script>

var lastdate;
var revision;
lastdate = "Jul. 30, 2009"
revision = "58"

function updated(){
	return "This web site was last modified on "+lastdate+" , ISO 9001:2000, Rev."+revision+" All Rights Reserved.";
}
