/* =======================================================
Email Spider Stumper v3
last modified 10 Aug 2005
Developed by Scott Clark & Kevin Duhe
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting
======================================================= */

// There are three arguments being passed into this array.
// "theName" is the username (or the portion of the email address prior to the @.
// "theExtras" are items such as "?subject=blah".  Can be blank if you don't want to use this feature.
// "theLink" is the text for the link.  For example "Contact Us".  Can be blank if you don't want to use this feature.

function jsEmail(theName,theExtras,theLink) {
var theDomain ="artbuffet.org";
var theEmail = theName+"@"+theDomain;
if (theLink != ""){
    theLink = theLink;
	}else{
    theLink = theEmail;
    }
	document.write('<a href=mailto:'+theEmail+' '+theExtras+'>'+theLink+'</a>');
}


function loadinparent(url, closeSelf){	self.opener.location = url;	if(closeSelf) self.close();	}   
