// If you wish to use this script for non-commercial purposes, please extend the author the courtesy of crediting him and
// providing a link to his site - http://www.markeverett.com

// Unauthorised use of this script for commercial purposes is prohibited.
// Please contact the author at mark AT markeverett D0T com to request authorisation.

// In all cases this work remains the copyrighted property of Mark Everett
// _______________________________________________________________

// Title : Spiderproof mailto link maker v2
// Author : Mark Everett
// Website : www.markeverett.com
// Copyright © Mark Everett 2004 all rights reserved
// _______________________________________________________________


make_mailto.USER_NAME = "mofaha";
make_mailto.DOMAIN_NAME = "mofaha";
make_mailto.DOMAIN_EXTENSION = "com";
function make_mailto (theLink) {
 	var the_at_sign = "@", the_dot = ".";
 	linkStr = "mailto:" + make_mailto.USER_NAME + the_at_sign + make_mailto.DOMAIN_NAME + the_dot + make_mailto.DOMAIN_EXTENSION;
// Workaround to allow linkani.js to use onmouseover on the email link
	theLink.childNodes[1].href = linkStr;
}
