// JavaScript Document


function showCreditors(val) {
if (val == "yes") {
	var creditordiv = document.getElementById('creditors_info');
	creditordiv.className="show";
}
if (val == "no") {
	var creditordiv = document.getElementById('creditors_info');
	creditordiv.className="hide";
	document.forms.second_step.creditor_1.value = "";
	document.forms.second_step.creditor_1_amount.value = "";
	document.forms.second_step.creditor_2.value = "";
	document.forms.second_step.creditor_2_amount.value = "";
	document.forms.second_step.creditor_3.value = "";
	document.forms.second_step.creditor_3_amount.value = "";
}
}
