<!--

/**
Function to generate page showing active email address.
Purpose: to prevent spambots harvesting addresses.
	document.write('<a href=" mailto:' + user + ' @' + domain +' ?subject=' +subCon+' " ' +' >Contact Us</a>' ); 

**/

function maillink(person, domain, description){
	if(domain==null){
		domain = 'thoughtware.com.au';
	}
	var address = person + '&#64' + domain;
	if(description==null){
		description = address;
	}
	document.write ('<A HREF="mai')
	document.write ('lto:'+address+'">'+description);
	document.write ('</A>');
}

//-->