/* Function to get my email address to prevent robots getting it from the html. */
/* If mailto is 1 the html 'mailto' stuff is generated; otherwise the email     */
/* address is written to the page.                                              */ 
function emailAddr(mailto)
{
	var mangledAddr = "llurstchn2bn2tj1khud2bnl";
	var sString = "abcdefghijklmnopqrstuvwxyz1@2.";
	var emailText = "";
	if (mailto == 1)
	{
		emailText = "mailto:";
	}
	for (var i = 0; i < mangledAddr.length; i++)
	{
		emailText += sString.charAt(sString.indexOf(mangledAddr.charAt(i)) + 1);
	}
	if (mailto == 1)
	{
		emailText += "?subject=MMV Studio Enquiry";
		document.location.href = emailText;
	}
	else
	{
		document.write(emailText);
	}
}

