function SaveRecord() {
		
	var bolChoice
	var strValidEntryMessage
	
	var strMessage = ""
	var strErrors = ""

	/*
	if (document.frmDetails.txtBadgers.value != "selected")	{
		strErrors = "Badgers?\n";
	}

	if (document.frmDetails.txtNearReserve.value != "selected")	{
		strErrors = strErrors + "Near a Reserve?\n";
	}

	if (document.frmDetails.txtEscapeProof.value != "selected")	{
		strErrors = strErrors + "Escape Proof?\n";
	}	
	
	if (document.frmDetails.txtHedgehogs.value != "selected")	{
		strErrors = strErrors + "Other Hedgehogs?\n";
	}

	if (document.frmDetails.txtFlooding.value != "selected")	{
		strErrors = strErrors + "Flooding?\n";
	}
	*/
			
	if (strErrors=="") {
			document.frmDetails.submit(); 
		}
	else {
		strMessage = "Please answer all of the questions.\n\n"
		alert(strMessage + strErrors);
	}
}

function Accept()	{

	document.frmDetails.submit();
}


function Reject()	{
	document.frmDetails.action = 'HedgehogContact.asp';
	document.frmDetails.submit();
}
function OptionBadgers()	{
	document.frmDetails.txtBadgers.value = "selected";		
}

function OptionNearReserve()	{
	document.frmDetails.txtNearReserve.value = "selected";
}

function OptionEscapeProof()	{
	document.frmDetails.txtEscapeProof.value = "selected";		
}

function OptionHedgehogs()	{
	document.frmDetails.txtHedgehogs.value = "selected";		
}

function OptionFlooding()	{
	document.frmDetails.txtFlooding.value = "selected";		
}
