/* JavaScript to identify the season */
var now = new Date(); 
var month = now.getMonth() + 1; 
var date = now.getDate(); 
var year = now.getFullYear(); 
var season; 
if ( month < 3) season = "Winter"; 
if (month >= 3 && month < 6) season = "Spring"; 
if (month >= 6 && month < 9) season = "Summer"; 
if (month >= 9 && month < 12) season = "Fall"; 
if (month == 12) season = "Winter"; 
document.write(''+season + " " + year+'');

