<!--
if (self != top) {top.location = self.location;}
day = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
mon = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
now = new Date
var strDay;
document.write( day[now.getDay()] + "&nbsp;"+ now.getDate() + "." + mon[now.getMonth()] + "&nbsp;" + now.getFullYear() )
//-->
