function info(info_message) {
	if(info_message) alert(info_message);
	return false;
}

function cartShowDiscount(id) {
	var el = document.getElementById('discount_'+id);
	el.style.display = el.style.display == 'none' ? 'block' : 'none';
}





