﻿function mailer(){	// disguise mail addresses by splitting them in two and making the email	// address inside the script	// var 'part1' is set up by a mini-script just before this is called	var part2  = "actapple.org.au";	document.write('<a href=\"mailto:' + part1 + "@" + part2 + '\">')	document.write("ACTApple " + part1 + '</a>')}