function TodaysDate(){
var today="";
var days=new Array(8);
days[1] = "Sun";
days[2] = "Mon";
days[3] = "Tue";
days[4] = "Wed";
days[5] = "Thr";
days[6] = "Fri";
days[7] = "Sat";
var months=new Array(13);
months[1] = "Jan";
months[2] = "Feb";
months[3] = "Mar";
months[4] = "Apr";
months[5] = "May";
months[6] = "Jun";
months[7] = "Jul";
months[8] = "Aug";
months[9] = "Sep";
months[10] = "Oct";
months[11] = "Nov";
months[12] = "Dec";
var dateObj=new Date();
var wday=days[dateObj.getDay() + 1];
var lmonth=months[dateObj.getMonth() + 1];
var year=dateObj.getYear();
if (year < 1000) year += 1900;
var date=dateObj.getDate();
today=wday + " " + lmonth + " " + date + " " + year;
document.write(today);
}

 function changeImage(picName, imageUrl){
  document.images[picName].src = imageUrl;
}

function popup(url, title, w, h) {
	h = (h == '0') ? '420' : h + 25;
	w = (w =='0') ? '420' : w + 20;
	window.open(url,title,'height=' + h + ',width=' + w + ',resizable=yes,toolbars=no,scrollbars=no');
}