// JavaScript Document
// FOR DONATION FORM RADIO CHECK BUTTONS

function makeChoice()

{
 var val = 0;
for( i = 0; i < document.formdonate.amount.length; i++ )
{
if( document.formdonate.amount[i].checked == true )
{
val = document.formdonate.amount[i].value;
if(val=='other')
{
document.formdonate.otherChoice.disabled=false;
document.formdonate.otherChoice.focus();
}
else
{
document.formdonate.otherChoice.disabled=true;
}
}

}

}

