var from;

function seasonal(from)

{

var d = new Date()

var month = d.getMonth()

month=month+1

var day = d.getDate()

var dm = (month*100)+day



	if (dm > 1210)// not before 10th December

	{

	document.write("<table width=400><tr><td>");

	document.write("<center><img src=graphics/j0283729(p).gif></center>");

	document.write("<marquee><font color=red font size=4><b>Season's Greetings from " + from +"</b></marquee>");

	document.write("</td></tr></table>");

	}



	if (dm < 110)// not after the 9th January

	{

	document.write("<table width=400><tr><td>");

	document.write('<marquee><font color=red font size=4><b>A Happy and Prosperous New Year to all from '+ from + '...</b></marquee>');

	document.write("</td></tr></table>");

	}

	document.write("<p></font>")



}

