function addressMe() { // this is just to hide your email from dumb bots
var theAt = '@';         
var theMe = 'greg';        
var theHere = 'shadetreeguitars';
var theDot = '.';
var theRest = 'com';
var thePost = 'mailto:';
var theThing = '<a href="' + thePost + theMe + theAt + theHere + theDot + theRest + '">'; 
theThing = theThing + theMe + theAt + theHere + theDot + theRest + "</a>";
document.write(theThing);
}

function addressMargie() { // this is just to hide your email from dumb bots
var theAt = '@';         
var theMe = 'margie';        
var theHere = 'shadetreeguitars';
var theDot = '.';
var theRest = 'com';
var thePost = 'mailto:';
var theThing = '<a href="' + thePost + theMe + theAt + theHere + theDot + theRest + '">'; 
theThing = theThing + theMe + theAt + theHere + theDot + theRest + "</a>";
document.write(theThing);
}