<!-- Begin
//If you use this, please leave these credits intact
//George Plumley August 2003  george@bravenewniche.com

function eThis(endBit,whereAt,toWhom,makeLive,theClass) {

var theAddress;
var thePartial;
var thePartialClass;
var theFull;
var theFullClass;

theAddress = toWhom+"@"+whereAt+"."+endBit;

if (makeLive == "1") {
	document.write(theAddress);
}

else if (makeLive == "2") {
	thePartial = '<a href="mailto:'+theAddress+'">';
	document.write(thePartial);
}

else if (makeLive == "3") {
	thePartial = '<a class="'+theClass+'" href="mailto:'+theAddress+'">';
	document.write(thePartial);
}

else if (makeLive == "4") {
	theFullClass = '<a class="'+theClass+'" href="mailto:'+theAddress+'">'+theAddress+'</a>';
	document.write(theFullClass);
} 

else {
	theFull = '<a href="mailto:'+theAddress+'">'+theAddress+'</a>';
	document.write(theFull);
} 


}

// End -->
