/*
Simple script to keep the About page's opening paragraph up to date ("For the last xx years...) without requiring an annual text revision.
Copyright 2010, Chad Angrisani (chadangrisani@gmail.com) All rights reserved.
Non-exclusive, unrestricted, transferrable license granted to Angrisani, Inc. dba PERMCO Engineering & Management without distribution.
*/

// PERMCO Engineering & Management was established April 1, 1983.
function since_1983() {
	var now = new Date();
	var this_year = now.getFullYear();
	var years = this_year - 1983;
	document.write(years);
}
