function start() {
	document.BHG_Contractor_Application.Skill_Other_Text.disabled = true;
	document.BHG_Contractor_Application.Software_Other_Text.disabled = true;
	document.BHG_Contractor_Application.Hardware_Other_Text.disabled = true;
	document.BHG_Contractor_Application.Genre_Other_Text.disabled = true;
	document.BHG_Contractor_Application.Previous_BHG_Project.disabled = true;
}
onload = start;

function chgtx() {
	document.BHG_Contractor_Application.Skill_Other_Text.disabled = !BHG_Contractor_Application.Skill_Other.checked;
	document.BHG_Contractor_Application.Software_Other_Text.disabled = !BHG_Contractor_Application.Software_Other.checked;
	document.BHG_Contractor_Application.Hardware_Other_Text.disabled = !BHG_Contractor_Application.Hardware_Other.checked;
	document.BHG_Contractor_Application.Genre_Other_Text.disabled = !BHG_Contractor_Application.Genre_Other.checked;
	document.BHG_Contractor_Application.Previous_BHG_Project.disabled = !BHG_Contractor_Application.Worked_With_BHG_Before.checked;
}
