var weekdays=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"),months=new Array("January","February","March","April","May","June","July","August","September","October","November","December");function today(){var a=new Date;return weekdays[a.getDay()]+",&nbsp;&nbsp;"+months[a.getMonth()]+" "+a.getDate()+", "+a.getFullYear()}var myToday;myToday=window.parent.today!=null?window.parent.today():today();document.write('<span class="bodytext">'+myToday+"&nbsp;</span>");
