// JavaScript Document

function addRecentlyAdded(year, month, date){
	var updatedDate = new Date();
	updatedDate.setFullYear(year,month-1,date);
	var today = new Date();
	days = Math.floor((today-updatedDate)/(365*60*60*60));
	if(days < 8){
		document.write("<img class=\"icon\" src=\"images/updated.gif\" alt=\"updated\" width=\"50\" height=\"11\" border=\"0\">");
	}
	else{
		// Do nothing
	}
}