function fillBoxes() {
	thedate = document.forms['getaquote'].s_getdate;
	
	// Day
    fillDay = thedate.value.substring(0,2);
    theDay = document.forms['getaquote'].day;
	theDay.value = fillDay;
	
	// Month
	fillMonth = thedate.value.substring(3,5);
	fillMonthFull = "";
	if (fillMonth == '01') { fillMonthFull = 'January'}
	else if (fillMonth == '02') { fillMonthFull = 'February'}
	else if (fillMonth == '03') { fillMonthFull = 'March'}
	else if (fillMonth == '04') { fillMonthFull = 'April'}
	else if (fillMonth == '05') { fillMonthFull = 'May'}
	else if (fillMonth == '06') { fillMonthFull = 'June'}
	else if (fillMonth == '07') { fillMonthFull = 'July'}
	else if (fillMonth == '08') { fillMonthFull = 'August'}
	else if (fillMonth == '09') { fillMonthFull = 'September'}
	else if (fillMonth == '10') { fillMonthFull = 'October'}
	else if (fillMonth == '11') { fillMonthFull = 'November'}
	else if (fillMonth == '12') { fillMonthFull = 'December'}
	theMonth = document.forms['getaquote'].month;
	theMonth.value = fillMonthFull;
	
	// Year
	fillYear = thedate.value.substring(6,10);
	theYear = document.forms['getaquote'].year;
	theYear.value = fillYear;
	
	// Set hidden fields used in e-mails etc.
	document.forms['getaquote'].s_PickUpDateDay.value = fillDay;
	document.forms['getaquote'].s_PickUpDateMonth.value = fillMonth;
	document.forms['getaquote'].s_PickUpDateYear.value = fillYear;
	
}
