function newflag(newbieStartDate){
 var todaysDate=new Date();var startDate=new Date();startDate.setTime(Date.parse(newbieStartDate));var newbieLeftToGo=parseInt(1+(todaysDate-startDate)/86400000);var newbieInsert='<img src="orange_star.gif" border="0" hspace="0" vspace="0" alt="Updated" title="Updated">';
 if (newbieLeftToGo < 14  &&  newbieLeftToGo > 0){ document.write(newbieInsert); }
}
// newbieflag.js v2 January 2005

function update(newbieStartDate){
 var todaysDate=new Date();var startDate=new Date();startDate.setTime(Date.parse(newbieStartDate));var newbieLeftToGo=parseInt(1+(todaysDate-startDate)/86400000);var newbieInsert='<span style="color:#ff6633;font-size:7pt;margin-left:4px;background:#fdffd6">Newly Added</span>';
 if (newbieLeftToGo < 14  &&  newbieLeftToGo > 0){ document.write(newbieInsert); }
}