var subject = "Contact from lpwireintl.com";
var emails = new Array();

emails[0] = "angela.gerbitz*leggett.com";
emails[1] = "john*stanawaywireconsulting.com";
emails[2] = "lpwirena*leggett.com";

function email(index)
{
	location.href = "mailto:" + emails[index].replace(/\*/, "@") + "?Subject=" + escape(subject);
}
