English
<!-- http://www.downcodes.com/js --> <!--To achieve this effect, add the following code to the <body> area --> <SCRIPT LANGUAGE="JavaScript"> <!- - Begin var now = new Date(); var month = now.getMonth() + 1; var date = now.getDate(); var year = now.getYear(); var season; if (month > 1 && month < = 3) season = "winter"; if (month == 3 && date > 19) season = "spring"; if (month > 3 && month <= 6) season = "spring"; if (month == 6 && date > 20) season = "summer"; if (month > 6 && month <= 9) season = "summer"; if (month == 9 && date > 21) season = "autumn"; if (month > 9 && month <= 12) season = "Autumn"; if (month == 12 && date > 20) season = "Winter"; //Y2K Fix if (year < 2000) year = year + 1900; //Winter Season Fix if (season == "Winter") year = year - 1; document.write(year + "year" + season); // End --> </script>