<!--
/* HOW TO USE:
1. ARRANGE THE EVENTS IN SORTED ORDER.
2. DATE OF THE EVENT SHOULD BE GIVEN AS: 04-05-2004
3. THE EVENT WILL BE DISPLAYED ONE MONTH IN ADVANCE
*/

var events = new Array(
[''],
['31-01-2004', 'Due date for filing TDS retruns on computer media has been extended to March 31st 2004.'],
['31-03-2004', 'Last date for filing return of income without attracting penalty u/s 271F is 31st March 2004 for assessment year 2003-04.'],
['31-03-2004', 'Due date for filing TDS retruns on computer media is March 31st 2004.'],
['01-06-2004', 'From 1st June 2004 all payments to Income Tax should be made in Challans 280, 281 & 282 ONLY. Old 4 page challans will not be accepted anymore.'],
['15-06-2004', 'Due date for payment of advance tax for Companies is June 15th.'],
['30-06-2004', 'Due date for filing TDS returns is June 30th.'],
['09-07-2004', 'Cost Inflation Index for 2004-05 is 480.'],
['30-08-2004', 'Due date for filing return on income for Salary & Business & 44 AB cases is October 31st.'],
['31-07-2004', 'PAN services will now also be available from TIN facilitation centers of NSDL.'],
['31-10-2004', 'Due date for filing return on income for corporate, non-corporate & 44AB cases is October 31st.'],
['15-09-2004', 'Due date for payment of advance tax for Companies and other than companies is September 15th.'],
['15-12-2004', 'Due date for payment of advance tax for Companies and other than companies is December 15th.'],
['31-01-2005', 'PAN/TAN IS MANDATORY ON TAX CHALLANS W.E.F. 01/01/2005 (FOR DETAILS SEE PRESS NOTE).'],
['15-03-2004', 'Due date for payment of advance tax for Companies and other than companies is March 15th.']
);

var strMarquee = new String();

for(i=1; i <= events.length-1; i++)
{
	var strDate = new String(events[i][0]);
	var sMonth = parseInt(strDate.substring(3,5),10);
	var sYear = parseInt(strDate.substring(6),10);
	var dtCurDate = new Date();
	var icurMonth = dtCurDate.getMonth()+1;
	var icurYear = dtCurDate.getFullYear();

	if (((icurMonth == sMonth) || ((icurMonth + 1) == sMonth)) && (icurYear == sYear))
	{
		strMarquee = strMarquee + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' + events[i][1];
	}
}
document.write(strMarquee);
//-->
