function webinar1()
{
document.write('<a href="mailto:info@softwaregenomecouncil.com?subject=Please register me for the June 25, 2003 webinar">');
document.write('June 25th</a>');
}

function webinar2()
{
document.write('<a href="mailto:info@softwaregenomecouncil.com?subject=Please register me for the July 17, 2003 webinar">');
document.write('July 17th</a>');
}

function newsletter()
{
document.write('<a href="email/Newsletter0603.asp" target="_blank">');
document.write('June 2003</a>');
}

function current_date() {

   var now = new Date();
   var month = now.getMonth();
   var date = now.getDate();
   var browserName = navigator.appName;
   var browserVer = parseInt( navigator.appVersion );
   var version = "";
   var monthname;
   var currentDate;

   if (month == 0) monthname = "January";
   if (month == 1) monthname = "February";
   if (month == 2) monthname = "March";
   if (month == 3) monthname = "April";
   if (month == 4) monthname = "May";
   if (month == 5) monthname = "June";
   if (month == 6) monthname = "July";
   if (month == 7) monthname = "August";
   if (month == 8) monthname = "September";
   if (month == 9) monthname = "October";
   if (month == 10) monthname = "November";
   if (month == 11) monthname = "December";

   if (browserName == "Netscape" && browserVer >= 4)
         version = "n4";
   else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4 )
         version = "e4";
   else
         version = "other";
   if (version == "n4" || version == "e4") {
      var year = now.getFullYear();
   } else {
      var year = now.getYear();
      if (year < 100) {
      // Entered value is two digits, which we allow for 1930-2029.
         if (year >= 30) {
            year += 1900
         } else {
            year += 2000
         }
      }
   }

   currentDate = date + '&nbsp;' + monthname + '&nbsp;'+ year; 
   return (currentDate);

}
