var pos=0;
var img=new Array();
var i;

var thisDay="";
var thismonth="";
var thisDate="";
var today=new Date();
var thisYear="";

if (today.getDay()==0)
 thisDay="S u n d a y";
else if (today.getDay()==1)
 thisDay="M o n d a y";
else if (today.getDay()==2)
 thisDay="tuesday";
else if (today.getDay()==3)
 thisDay="wednesday";
else if (today.getDay()==4)
 thisDay="thursday";
else if (today.getDay()==5)
 thisDay="friday";
else if (today.getDay()==6)
 thisDay="saturday";


if (today.getMonth()==0)
 thismonth="January";
else if (today.getMonth()==1)
 thismonth="February";
else if (today.getMonth()==2)
 thismonth="March";
else if (today.getMonth()==3)
 thismonth="April";
else if (today.getMonth()==4)
 thismonth="May";
else if (today.getMonth()==5)
 thismonth="June";
else if (today.getMonth()==6)
 thismonth="July";
else if (today.getMonth()==7)
 thismonth="August";
else if (today.getMonth()==8)
 thismonth="September";
else if (today.getMonth()==9)
 thismonth="October";
else if (today.getMonth()==10)
 thismonth="November";
else if (today.getMonth()==11)
 thismonth="December";

if (today.getYear()==99)
thisYear="19"+today.getFullYear()
else
thisYear=today.getFullYear()

thisDate=thisDay+" + "+thismonth+" "+today.getDate()+", "+thisYear;