function showDate() {
  var Today=new Date();
  var WeekDay=Today.getDay();
  var DayDate=Today.getDate();
  var ThisMonth=Today.getMonth();
  var ThisYear=Today.getYear();
	if (navigator.appName=="Netscape") ThisYear += 1900;

  if (WeekDay==0){document.write("Sunday ")};
  if (WeekDay==1){document.write("Monday ")};
  if (WeekDay==2){document.write("Tuesday ")};
  if (WeekDay==3){document.write("Wednesday ")};
  if (WeekDay==4){document.write("Thursday ")};
  if (WeekDay==5){document.write("Friday ")};
  if (WeekDay==6){document.write("Saturday ")};
  document.write(DayDate);
  
  if (ThisMonth==0){document.write(" January ")};
  if (ThisMonth==1){document.write(" February ")};
  if (ThisMonth==2){document.write(" March ")};
  if (ThisMonth==3){document.write(" April ")};
  if (ThisMonth==4){document.write(" May ")};
  if (ThisMonth==5){document.write(" June ")};
  if (ThisMonth==6){document.write(" July ")};
  if (ThisMonth==7){document.write(" August ")};
  if (ThisMonth==8){document.write(" September ")};
  if (ThisMonth==9){document.write(" October ")};
  if (ThisMonth==10){document.write(" November ")};
  if (ThisMonth==11){document.write(" December ")};
  document.write(ThisYear);


}
