function showMonthDay() 
  {
    var strMnthDay = Date();
    var strDate = strMnthDay.substring(4, 10);
    var strComma = ", ";
    document.write(strDate.fontcolor("white") + strComma.fontcolor("white"));
  }

function showYear() 
  {
    var strYear = Date();
    var strYearIE = strYear.substring(19, 24);
    var strYearNet = strYear.substring(11, 15);
    if (navigator.appName == "Microsoft Internet Explorer") 
      {
        document.write(strYearIE.fontcolor("white"));
       }
    else
      {  
        document.write(strYearNet.fontcolor("white"));
      }
  }
