function SetDate(theForm)
{
	var year = theForm.year.options[theForm.year.selectedIndex].value;
	if (!year)
		return;
	var month = theForm.month.options[theForm.month.selectedIndex].value;
	if (!month)
		return;
	var d = new Date(year, month, 0);	// Last day in the previous month because months start on 0
	var daysInMonth = d.getDate();
	var dayind = theForm.day.selectedIndex;
	theForm.day.options.length = 29;	// Save the minimum days
	if (daysInMonth > 28)
		for (i = 29; i <= daysInMonth; i++) {
			theForm.day.options.length++;
			theForm.day.options[theForm.day.options.length-1] = new Option(i, i);
		}
	theForm.day.selectedIndex = dayind;
}

function ViewImage(url)
{
	window.open(url, "_blank", "menubar=no,location=no,scrollbars=no,status=no,resizable=no");
	return false;
}

