<!--

	// check to see if the Death/Humane amount is <= 20,000
	function deathAmount(amount, field)
	{
		var tempAmount;
		tempAmount = amount.value;
		amount = (tempAmount.replace(",",""))
		// display an error message if amount is > 20,000
		if (amount > 20000)
			alert('Please enter an amount less than or equal to 20000 for Death/Humane Destruction, Theft or Straying');
		document.form1[field].value = amount;
	}
	function confirmDelete(filename,prompt)
	{
	if(confirm(prompt))
		location= filename;
	}

	function onClickEnable(radio, bred_y, bred_n)
	{
		document.form1[bred_y].disabled = true;
		document.form1[bred_n].disabled = true;
	}
	function onClickDisable(radio, bred_y, bred_n)
	{
		document.form1[bred_y].disabled = false;
		document.form1[bred_n].disabled = false;
	}

	function displaystatus(text)
	{
		window.status = text;
		return true;
	}
	
	function clearstatus()
	{
		window.status=" ";
	}
-->