Edit the nobot.js file to reflect the domain that it is to be placed on.

Example script changes for dreiburgen.org:
******************Original************************************
function who3b(lhs) {
var l = lhs;
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write("sca-caid.org\">");
document.write(lhs + "@sca-caid.org");
document.write("<\/a>");
}

function whoto3b(link, lhs) {
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write("sca-caid.org\">");
document.write(link);
document.write("<\/a>");
}

function whoto(rhs, lhs) {
var r = rhs;
var l = lhs;
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "\">");
document.write(lhs + "@" + rhs);
document.write("<\/a>");
}

function wholink(link, lhs, rhs) {
var r = rhs;
var l = lhs;
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "\">");
document.write(link);
document.write("<\/a>");
}

******************Changed************************************
function who3b(lhs) {
var l = lhs;
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write("dreiburgen.org\">"); <----Changed
document.write(lhs + "@dreiburgen.org"); <----Changed
document.write("<\/a>");
}

function whoto3b(link, lhs) {
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write("dreiburgen.org\">"); <----Changed
document.write(link);
document.write("<\/a>");
}

function whoto(rhs, lhs) {
var r = rhs;
var l = lhs;
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "\">");
document.write(lhs + "@" + rhs);
document.write("<\/a>");
}

function wholink(link, lhs, rhs) {
var r = rhs;
var l = lhs;
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "\">");
document.write(link);
document.write("<\/a>");
}

****************************************************************
This concludes the changes to the nobot.js file.

Place the nobot.js file into the primary directory where the index file is located.

Now follow the directions below for each file that will contain the nobot javascript.

Open the file to be edited.

Place the following code below the <head> tag:
****************************************************************
<script src="nobot.js" language="JavaScript" type="text/javascript">
</script>

****************************************************************

Now, there are several options for the actual email inclusion.....

****************************************************************
The code:
<script type="text/javascript">who3b('webwright')</script>

will display and submit when clicked:
webwright@(domain listed) eg: webwright@sca-caid.org

Example:

****************************************************************
The code:
<script type="text/javascript">whoto3b('Lord Matheus Reyner', 'webwright')</script>

will display:
Lord Matheus Reyner

Will submit when clicked:
webwright@(domain listed) eg: webwright@sca-caid.org

Example:

****************************************************************
The code:
<script type="text/javascript">whoto('hotmail.com', 'webwright')</script>

will display and submit when clicked:
webwright@hotmail.com

Example:

****************************************************************
The code:
<script type="text/javascript">wholink('Lord Matheus Reyner', 'webwright', 'hotmail.com')</script>

will display:
Lord Matheus Reyner

Will submit when clicked:
webwright@hotmail.com

Example:

****************************************************************

Save the file and upload it into the same directory as the nobot.js script.

If you must place the page file in a directory other than the main directory, edit the file to represent the location of the nobot.js file or include a copy of the nobot.js file in the subdirectory.

Example of a file placed in a subdirectory of the www.sca-caid.org site:
****************************************************************
<script src="http://www.sca-caid.org/nobot.js" language="JavaScript" type="text/javascript">
</script>

****************************************************************

If you have any questions, you may contact