<!-- start JavaScript to hide email address from spambots -->
<!--//
	var lhs1 = "info";
	var rhs1 = "gearsonline.net";

	function print_mail_to_link1() {
		document.write("<a href=\"mailto");
		document.write(":" + lhs1 + "@");
		document.write(rhs1 + "\">" + lhs1 + "@" + rhs1 + "<\/a>");
	}

	var lhs2 = "tachyon";
	var rhs2 = "gearsonline.net";

	function print_mail_to_link2() {
		document.write("<a href=\"mailto");
		document.write(":" + lhs2 + "@");
		document.write(rhs2 + "\">" + lhs2 + "@" + rhs2 + "<\/a>");
	}

	var lhs3 = "tachyon80";
	var rhs3 = "hotmail.com";

	function print_mail_to_link3() {
		document.write("<a href=\"mailto");
		document.write(":" + lhs3 + "@");
		document.write(rhs3 + "\">" + lhs3 + "@" + rhs3 + "<\/a>");
	}
	
	var lhs4 = "kosh_45662";
	var rhs4 = "yahoo.com";

	function print_mail_to_link4() {
		document.write("<a href=\"mailto");
		document.write(":" + lhs4 + "@");
		document.write(rhs4 + "\">" + lhs4 + "@" + rhs4 + "<\/a>");
	}

name_array = new Array();
domain_array = new Array();

name_array[0] = "info";
domain_array[0] = "gearsonline.net"
name_array[1] = "rin.despres";
domain_array[1] = "yahoo.com"

function print_mail_to_link(addyNumber,dispText,msgSubject) {
	var component1 = name_array[addyNumber];
	var component2 = domain_array[addyNumber];
	var component3 = "";
	var atsign = String.fromCharCode(64);
	if (arguments.length >= 3) { component3 = "?subject=" + msgSubject; }
	document.write("<a href=\"mailto");
	document.write(":" + component1 + atsign);
	document.write(component2 + component3 + "\">" + dispText + "<\/a>");
}
// end hiding -->