<!--
today = new Date();
var dd = today.getDate();
var mm = today.getMonth();
var yy = today.getYear();

var theForm = document.sendform;
var dbox = theForm.from_day;
var ybox = theForm.from_year;
nextd = new Number(dd+2);
if (nextd>=dbox.length)
{
	nextd = nextd-dbox.length;
	mm += 1;
	if (mm>11) 
	{
		mm = 0;
		yy += 1;
	}
}

cy = new Number(ybox.options[0].value );
ey = new Number(cy+ybox.length);
counter = new Number(0);
for (var i=cy;i<ey;i++)
{
	if (i==yy)
	{
		break;
	}
	counter++;
}
ybox.selectedIndex=counter;
theForm.from_month.selectedIndex = mm;
dbox.selectedIndex = nextd;

updateday(theForm);
updatemonth(theForm);
updateyear(theForm);
-->