	var DepDate = new Date() 
	var RetDate = new Date() 
	var year = '<% = Year(Date())%>';
	var TimeToAdd 
	TimeToAdd = DepDate - (-1)* 7 * 86400000 
	DepDate.setTime(TimeToAdd) 
	document.form1.cmbMonthFrom.options[DepDate.getMonth()].selected = '1' 
	document.form1.cmbDayFrom.options[DepDate.getDate()-1].selected = '1'
	TimeToAdd = DepDate - (-1)* 7 * 86400000 
	RetDate.setTime(TimeToAdd) 
	document.form1.cmbMonthTo.options[RetDate.getMonth()].selected = '1' 
	document.form1.cmbDayTo.options[RetDate.getDate()-1].selected = '1'
	SetDateDiff7();