if ( document.form_1.funding.id == 'required') {

/* Education forms */
if (document.form_1.edu) { document.writeln('<tr><td colspan=2>* What is the status of your curriculum funding?</td></tr>'); }
/* Regular Aprimo forms */
else { document.writeln('<tr><td colspan=2>* What is the status of your project funding?</td></tr>'); }

document.writeln('<tr><td colspan=2><input type="radio" value="Available now" name="funds">Available now <br/>'
+ '<input type="radio" value="Budgeted for future" name="funds">Budgeted for future <br/>'
+ '<input type="radio" value="Not budgeted" name="funds">Not budgeted <br/>'
+ '<input type="radio" value="Unsure" name="funds">Unsure</td></tr><tr><td class="spacer" colspan="2"></td></tr>');
}
else { document.writeln('<input type="hidden" value="Unsure" name="funds">'); }

