var startDate = ['28','06','2005']; // Forum start date in the form ['day','month','year']
// no need to edit below
if(location.href.match(/\.com\/?(index.cgi)?\??(&?action=home)?(#\w+)?$/)) {
var td = document.getElementsByTagName('td');
var sta = new Date();
sta.setDate(startDate[0]);
sta.setMonth(startDate[1]-1);
sta.setYear(startDate[2]);
var cur = new Date();
var dif = cur - sta;
var totalMonth = 0;
var totalYear = 0;
var totalDay = Math.floor(dif/(60 * 60 * 24 * 1000)) + 1;
while(totalDay >= 365) {
totalDay -= 365;
totalYear++;
}
while(totalDay >= 30) {
totalDay -= 30;
totalMonth++;
}
var age = "";
if(totalYear > 1)
age += totalYear +' years, ';
else if(totalYear > 0)
age += totalYear +' year, ';
if(totalMonth > 0)
age += totalMonth +' months, ';
age += totalDay+' days.';
for (i=td.length-1; i>0; i--) {
if(td[i].width == '40%' && td[i-1].width == '60%') {
td[i].firstChild.innerHTML += ' Forum Age: '+age;
break;
}
}
}
//-->