function refreshFrom() {
		document.forms['month'].reset();
		document.forms['type'].reset();
		document.forms['loc'].reset();				
}


function submitMonth() {
		document.forms['month'].submit();
		document.forms['month'].reset();
}

function submitType() {
		document.forms['type'].submit();
		document.forms['type'].reset();
}

function submitLocation() {
		document.forms['loc'].submit();
		document.forms['loc'].reset();
}

