<!-- Copyright 2005 - Personnel Profiles Employment Screening -->
<!-- Unauthorized use of this script without written consent is forbidden. -->
<!-- Version 1.0 -->
<!-- Hide from non JavaScript browsers

var original_amounts = new Array("5.00","9.75", "19.75", "19.75","0","16.00","20.00","12.00","12.00","12.00","13.00","12.00","18.00","12.00","6.00","10.00","5.00","3.00","10.00","7.25","11.50","3.00","3.00","2.00","5.00");

var amounts = new Array
("5.00","9.75","19.75","19.75","0","16.00","20.00","12.00","12.00","12.00","13.00","12.00","18.00","12.00","6.00","10.00","5.00","3.00","10.00","7.25","11.50","3.00","3.00","2.00","5.00");

function addit(input, update)
{
	amounts[update] = original_amounts[update] * input;
	return;
}

function figureitout()
{
	var amount = 0;

	for (var x = 0; x < document.estimate.price.length; x++)
	{
		if (document.estimate.price[x].checked == true)
		{
			amount += amounts[x] * 1;
		}
	}
	document.estimate.total_amount.value = amount.toFixed(2);
	return;
}

function reload()
{
	document.estimate.reset();
	for (x = 0; x < original_amounts.length; x++)
		amounts[x] = original_amounts[x];
}

//->