function setListValue( option_object, value  ){ option_object.selectedIndex = value;}
function initForm()
{
	xToday = new Date();
	xMonth = xToday.getMonth();
	xDay = xToday.getDate()-1;
	xYear = xToday.getYear()-2005; if (xYear < 2005) xYear=0;
	xF = document.forms['form3'];
	if(xDay >=29)
	{
		setListValue( xF.Collection_month, xMonth+1 )
		setListValue( xF.Return_month, xMonth+1 )
	}
	else
	{
		setListValue( xF.Collection_month, xMonth )
		setListValue( xF.Return_month, xMonth )
	}
	if(xDay >=29)
	{
		setListValue( xF.Collection_day, 1)
		setListValue( xF.Return_day, 4 )
	}
	else
	{
		setListValue( xF.Collection_day, xDay + 1)
		setListValue( xF.Return_day, xDay + 4)
	}
	setListValue( xF.Collection_Year, xYear )
	setListValue( xF.Return_Year, xYear )	
}
