// ABC_email_helpers. js - v1.2 released 11/10/2005 by Ira Baron
// AllergyBuyersClub.com - all rights reserved

// ===============================================
// Functions to manage the presentation of email addresses to hide them from spiders
// ===============================================

// Dynamically construct email addresses to hide them from Web email spiders
function abc_constructAddress(addressee, subject)
	{
	fullAddress = addressee + "@allergybuyersclub.com";
	parent.location.href='mailto:'+ fullAddress + "?SUBJECT=" + subject;
	}

