// Script toggling links to show and hide form elements

function toggle(div_to_toggle,copy_to_toggle,copy_open,copy_close) {

	var found_div = document.getElementById(div_to_toggle);

	var found_copy = document.getElementById(copy_to_toggle);

	if (!found_div) return;

	if (found_div.style.display.indexOf("none") >= 0) {

		found_div.style.display = "";

		found_copy.innerHTML = copy_open;
		
		found_copy.style.backgroundImage = "url(assets/tick.gif)";

	} else if (found_div.style.display == "") {

		found_div.style.display = "none";

		found_copy.innerHTML = copy_close;
		
		found_copy.style.backgroundImage = "none";

	}	

}