/* contact.js

This file has a simple function that creates a mailto: URL for the email
link that should be too complicated for email searching spam programs
to get figured out.

*/


function do_email()
{
	str1 = "evolution.com.au";
	str2 = "mai" + str1.substr(3,1);
	str3 = "to:inf" + str1.substr(2,1);
	str4 = "@sound";
	location.href = str2 + str3 + str4 + str1;
}


