//*****************YOU MAY NOT REMOVE THIS HEADER**********LINKWARE JavaScript******************
//Date With Day Of Week Display Copyright (MMII) 2002 - DaWorx Web Design - John Farquharson. **
//Completed @ 1:36:50 PM Wed Sept 11 2002 - Script may be used provided this header and link ***
//remain attached and visible on your page. This JavaScript shall remain the sole property of **
//the author. You may distribute this script freely - daworxwebdesign@yahoo.com Copyright 2002 *
//Tested - IE 5.5 / Netscape 4.6 - 6.1 / Opera 6.0 -Modify freely-link/header remain attached. *
//*****************LINKWARE JavaScript**********YOU MAY NOT REMOVE THIS HEADER******************
document.writeln("<table border='0' bgcolor='#D63194' cellpadding='0' cellspacing='0' width='120'><tr><td><center><input type='text' name='this_month' size='18'><table border='1' bordercolor='#D63194' bgcolor='#DE5AAD' cellpadding='0' cellspacing='0' width='120'><tr><td>");
document.writeln("<center><font size='1' color='#FFFFFF' face='verdana'>S</font><br><input type='radio' name='sunday'></center></td><td><center><font size='1' color='#FFFFFF' face='verdana'>M</font><br><input type='radio' name='monday'></center></td><td><center><font size='1' color='#FFFFFF' face='verdana'>T</font><br><input type='radio' name='tuesday'></center></td><td><center><font size='1' color='#FFFFFF' face='verdana'>W</font></a><br><input type='radio' name='wednesday'></center></td><td><center><font size='1' color='#FFFFFF' face='verdana'>T</font><br><input type='radio' name='thursday'></center></td><td><center><font size='1' color='#FFFFFF' face='verdana'>F</font><br><input type='radio' name='friday'></center></td><td><center><font size='1' color='#FFFFFF' face='verdana'>S</font><br><input type='radio' name='saturday'></center></tr></td></table>");
document.writeln("</tr></td><tr><td><center><font size='1' face='comic sans ms' color='#FFFFFF'>By <a href='http://www.geocities.com/daworxwebdesign/'><font color='#FFFFFF'>DaWorx Web Design</font></a></font></center></tr></td></table>");
function displayIt(){
  var newday = new Date();
  var the_day = newday.getDate();
  var this_day = newday.getDay()+1;
  var the_month = newday.getMonth()+1;
  var the_year = newday.getYear();
  if (this_day == 1){window.document.new_form.sunday.checked = true};
  if (this_day == 2){window.document.new_form.monday.checked = true};
  if (this_day == 3){window.document.new_form.tuesday.checked = true};
  if (this_day == 4){window.document.new_form.wednesday.checked = true};
  if (this_day == 5){window.document.new_form.thursday.checked = true}; 
  if (this_day == 6){window.document.new_form.friday.checked = true};
  if (this_day == 7){window.document.new_form.saturday.checked = true};
  if (the_month == 1){my_month = "January"};
  if (the_month == 2){my_month = "February"};
  if (the_month == 3){my_month = "March"};
  if (the_month == 4){my_month = "April"};
  if (the_month == 5){my_month = "May"};
  if (the_month == 6){my_month = "June"};
  if (the_month == 7){my_month = "July"};
  if (the_month == 8){my_month = "August"};
  if (the_month == 9){my_month = "September"};
  if (the_month == 10){my_month = "October"};
  if (the_month == 11){my_month = "November"};
  if (the_month == 12){my_month = "December"};
  if (the_year <= 1000){the_year = the_year + 1900};
  if (the_day <= 31){the_day = " " + the_day};
window.document.new_form.this_month.value = the_day + ' ' + my_month + ' ' + the_year;
	if ((navigator.appName == "Microsoft Internet Explorer") || ((navigator.appName == "Netscape") && (parseFloat(navigator.appVersion) > "4.6")))
{window.document.new_form.this_month.style.background = "#D63194";
window.document.new_form.this_month.style.color = "#FFFFFF";
window.document.new_form.this_month.style.border = "none";}}displayIt();