now = new Date
thisYr = now.getYear()
if (thisYr < 1900) {
thisYr = thisYr + 1900
}
nextYr = thisYr + 1
reviewDate = new Date (2010,4,8)
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='margin-left:-1px;font-weight:700;font-style:italic' width='741' style='text-decoration:none;background:#08296B;border-top: 0px solid red' bgcolor='#08296B' border='1'><tr><td width='741' height='45' class='LatestLabel' onMouseOver=this.style.backgroundColor='#00184A'  onMouseOut=this.style.backgroundColor='#08296B'><a href='Sato.html'><div style='text-decoration:none;color:yellow; font-size:9pt'>Click this box for our latest restaurant review: SATO RESTAURANT, WALTHAM, MA, reviewed " + daysFrom(reviewDate) + " days ago.</div><div style='text-decoration:none;color:white;font-size:9pt'>SATO RESTAURANT REVIEW: The section of Waltham that sits on either side of Route 128 is pretty much all...</div></a></td></tr></table>")
