<!--

	// JavaScript to print out email address and prevent email harvesters

	function printEmail(user) {

		var domain = 'affinitygroup.co.uk';

		document.write('<a href="mailto:');

		document.write(user);
		document.write('@');
		document.write(domain);

		document.write('">');

		document.write(user);
		document.write('@');
		document.write(domain);

		document.write('</a>');

	}



	// Function to toggle a section as visible or hidden, and display +/- in the heading above accordingly

	function toggleVisible(section) {

		if (document.getElementById) {
			var sectionID = document.getElementById("section_" + section);
			if (sectionID.style.display == 'block') {
				sectionID.style.display = 'none';
				if (document.images) {
					document["bullet_" + section].src = '/images/plus.gif';
				}
			}
			else {
				sectionID.style.display = 'block';
				if (document.images) {
					document["bullet_" + section].src = '/images/minus.gif';
				}
			}
		}

	}



//-->