// (c) 2002 bn2web Limited. All rights reserved.
// http://www.bn2web.com | info@bn2web.com | 01273 628313

function set_from_ddls()
{
	var d=0, m=0, y=0, today, tomorrow, t;
	today = new Date();

	// get tomorrow
	t = today.getTime() + 1000 * 60 * 60 * 24;
	tomorrow = new Date(t);

	d = tomorrow.getDate();
	m = tomorrow.getMonth()+1;
	y = tomorrow.getFullYear();

	document.forms[0].from_day.selectedIndex = d-1;
	document.forms[0].from_month.selectedIndex = m-2;
	document.forms[0].from_year.selectedIndex = y-2008;

}

function set_both_ddls()
{
	set_from_ddls();

	var d=0, m=0, y=0, today, nextweek, t;
	today = new Date();

	// get tomorrow
	t = today.getTime() + 1000 * 60 * 60 * 24 * 8;
	tomorrow = new Date(t);

	d = tomorrow.getDate();
	m = tomorrow.getMonth()+1;
	y = tomorrow.getFullYear();

	document.forms[0].to_day.selectedIndex = d-1;
	document.forms[0].to_month.selectedIndex = m-1;
	document.forms[0].to_year.selectedIndex = y-2006;
}