//This is done to, hopefully, avoid automatic address harvesters from harvesting
//these addresses for their spam lists.
var contacts = [
	["gcoachgc5", "Guy Chadwick", "cox", "net", "602-494-9464", "Stringing and full line of HL badminton gear"],
	["hstoo88", "Too Hing Seng", "yahoo", "com", "", "Stringing and shuttlecocks"],
	["warrenmee", "Warren Mee", "trident-usa", "com", "602-770-2571", "Stringing, shuttlecocks, racquets"],
	["fhartojo", "Francis Hartojo", "yahoo", "com", "", "Stringing and shuttlecocks"]
];

function contactInfo(t) {
	if (t < contacts.length) {
		document.write(
			"<a href=\"mailto:" +
			contacts[t][0] +
			"@" +
			contacts[t][2] +
			"." +
			contacts[t][3] +
			"?Subject=AZBC:%20%20Badminton%20Equipment.\">" +
			contacts[t][1] +
			"</a>" +
			(contacts[t][4] != "" ? " at " : "") +
			contacts[t][4] +
			" (" +
			contacts[t][5] +
			")"
		);
	}
}
