// JavaScript Document
/* This script calculates the age of the company and prints the value in the
 * span with id "age"
*/

var date= new Date;
var age= date.getFullYear()-1964;
document.getElementById("age").innerHTML=age;
