// JavaScript Document
var bVer = parseFloat(navigator.appVersion);
              
              // If browser version is greater than 4 then display the date.

              if (bVer>=4){

              window.name = "HOMEPAGE"

              var now = new Date()
              var tempDate = now.getMonth()
              var Month=""
              var Day=""

              if (tempDate == 0) {Month = "January"};
              if (tempDate == 1) {Month = "February"};
              if (tempDate == 2) {Month = "March"};
              if (tempDate == 3) {Month = "April"};
              if (tempDate == 4) {Month = "May"};
              if (tempDate == 5) {Month = "June"};
              if (tempDate == 6) {Month = "July"};
              if (tempDate == 7) {Month = "August"};
              if (tempDate == 8) {Month = "September"};
              if (tempDate == 9) {Month = "October"};
              if (tempDate == 10) {Month = "November"};
              if (tempDate == 11) {Month = "December"};
  
              document.write(Month+"<br>"+now.getDate())
              }
