// Timothy Cline JavaScript Document


function toggle( targetId, sourceId){
	target = document.getElementById( targetId );
	if (sourceId.checked){
		target.style.display = "block";
	} else {
		target.style.display = "none";
	}
}
