
<!--


		date=new Date();

		day=date.getDate();
				
		dplus5=date.getDate()+5;

		if (date.getDate() > 25) dplus5=date.getDate()-23;

		dplus7=date.getDate()+7;

		if (date.getDate() > 23) dplus7=date.getDate()-21;

		month=date.getMonth()+1;

		mplus=month;

		if (date.getDate() > 25) mplus=month+1;

		if (date.getMonth() > 11 & date.getDate() > 25) mplus=1;

		year=date.getYear();

		if (year < 2000) year=year+1900;

		yplus=date.getYear();

		if (yplus < 2000) yplus=yplus+1900;

		if (date.getMonth() > 11 & date.getDate() > 23) yplus=year+1;

		Today=month+"/"+day+"/"+year;
		
		Tplus5=mplus+"/"+dplus5+"/"+yplus;

		Tplus7=mplus+"/"+dplus7+"/"+yplus;


//-->

