function startOver(formID) {
	if (confirm('This will delete all the information you have entered.\nDo you want to continue?')) {
		eval('document.Form' + formID + '.FormSend' + formID + '.value="Clear"');
		eval('document.Form' + formID + '.submit()');
	}
}

function showReport(id)  {
	var el = document.getElementById(id);
	if (el.style.display == 'none')	{
		el.style.display = '';
		el = document.getElementById('more' + id);
		el.innerHTML = 'Hide';
	} else {
		el.style.display = 'none';
		el = document.getElementById('more' + id);
		el.innerHTML = 'Show';
	}
}
