<!--
function convertTimestamp(t) {
	year=t.slice(2,4);
	month=t.slice(4,6);
	day=t.slice(6,8);
	return(day+"/"+month+"/"+year);
}

today=new Date()
todayYear=today.getFullYear()
todayMonth=today.getMonth()+1;
todayDay=today.getDate();
function isNew(t) {
	year=t.slice(0,4);
	month=t.slice(4,6);
	day=t.slice(6,8);
	age=new Date(todayYear,todayMonth,todayDay) - new Date(year,month,day);
	if(age<86400000*30) return true;
}
//-->
