/* Original JavaScript (Email Spider Stumper) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting
===============================================================================
Corrected, Modified and extended by Webmaster Andy (andy@andy.com.au) 15/10/2005
Copyright 2005 Andy's Media Services
 # to enable multiple email addresses throughout website
 # to vary display names
 # to include subject
 # to include body introduction
-------------------------------------------------------------------------------
*/
var name ="no_one";
var domain ="nowhere.com";

// This function displays email address
function standard(name,domain) 
{
	document.write('<a href="mailto:' + name + '@' + domain + '">' + name + '@' + domain + '</a>');
}
// This function displays alternate name
function mine(name,domain,displayname) 
{
	document.write('<a href="mailto:' + name + '@' + domain + '">' + displayname + '</a>');
}

// This function adds a subject field to the email.
function mysubject(name,domain,subject,displayname)
{
    document.write('<a href="mailto:' + name + '@' + domain + '?subject=' + subject + '">' + displayname + '</a>');
}

// This function adds an introduction to the body of the email.
function mygday(name,domain,subject,bodyText,displayname)
{
    document.write('<a href="mailto:' + name + '@' + domain + '?subject=' + subject + '&body=' + bodyText + '">' + displayname + '</a>');
}
