function toggleDiscountForm()
{
	var discount_form = document.getElementById('discount_form');
	if (discount_form.style.display =='none') discount_form.style.display = 'block';
	else  discount_form.style.display = 'none';
	
}
//
