// Mail obfuscation scripts //
// author unknown //

function EMailSendTo(userAccount, emailTitle) {
  var urlType = 'mailto:';
  var domainName = '@'+'anothersphere'+'.co'+'.nz';
  var theDate = new Date()
  window.location = urlType + theDate.getDate() + (theDate.getMonth()+1)
  		+ theDate.getFullYear() + '.' + userAccount + '.trace' +  domainName
  		+ '?subject='+emailTitle
  		+ '&body=[Note: The destination of this email is a one-time anti-spam address]';
}

function EMailMessageMouseOver() {
  self.status = 'Click to email us';
}

function EMailMessageMouseOut() {
  self.status = '';
}
