	<!-- Remote Access Calculator Start -->

	function doField(form) {

	totstaff = (document.form.totstaff.options[document.form.totstaff.selectedIndex].value);
	addhours = (document.form.addhours.options[document.form.addhours.selectedIndex].value);
	hrate = (document.form.hrate.options[document.form.hrate.selectedIndex].value);

	calcMonth = (hrate * addhours) * (totstaff);
	form.calcMonth.value  = " $" + Math.round(calcMonth);
	calcYear = (calcMonth * 12);
	form.calcYear.value = " $" + Math.round(calcYear);
	}

	<!-- Calculator End -->
	
	
	<!-- Business Reporting Calculator Start -->

	function doField2(form) {

	rephours = (document.form.rephours.options[document.form.rephours.selectedIndex].value);
	reprate = (document.form.reprate.options[document.form.reprate.selectedIndex].value);
	reptime = (document.form.reptime.options[document.form.reptime.selectedIndex].value);

	repMonth = (reprate * reptime) * (rephours);
	form.repMonth.value  = " $" + Math.round(repMonth);
	repYear = (repMonth * 12);
	form.repYear.value = " $" + Math.round(repYear);
	}

	<!-- Calculator End -->