now = new Date
thisYr = now.getYear()
if (thisYr < 1900) {
thisYr = thisYr + 1900
}
nextYr = thisYr + 1
reviewDate = new Date (2012,01,12)
function daytoDays(inTime) {
return (inTime.getTime() /
(1000 * 60 * 60 *24))
}
function daysFrom(inDate) {
return (Math.ceil(daytoDays(now) - daytoDays(inDate) - 1))
}

document.write("<table style='padding-left:0px;margin-left:-1px;font-weight:700;font-style:italic' width='960' style='left:0;text-decoration:none;background:#08296B;border-top: 0px solid red' bgcolor='#08296B' border='1'><tr><td width='960' height='45' style='padding-left:20px;margin-left:0px' class='LatestLabel' onMouseOver=this.style.backgroundColor='#00184A'  onMouseOut=this.style.backgroundColor='#08296B'><a href='Daikanyama.html'><div style='text-decoration:none;color:yellow; font-size:9pt'>Click this box for our latest restaurant review: DAIKANYAMA, LEXINGTON, MA, reviewed " + daysFrom(reviewDate) + " days ago.</div><div style='text-decoration:none;color:white;font-size:9pt'>DAIKANYAMA REVIEW: The town of Lexington may be a popular place among tourists with its history, points of...</div></a></td></tr></table>")
