// JavaScript Document
<!--

    // This function builds the email address with the onclick event so that
	// web searching mechanisms cannot collect our email address for spamming.
	 
	
	function emailBuilder(id) {	
		var eName = new Array();
		var eDomain = "bhinc";
		var eAttached = new Array();
		
		eName[0] = "info";
		eAttached[0] = "?Subject=Attention Albuquerque office";
		eName[1] = "info";
		eAttached[1] = "?Subject=Attention Las Cruces office";
		eName[2] = "info";
		eAttached[2] = "?Subject=Attention Dallas office";
		eName[3] = "info";
		eAttached[3] = "?Subject=Attention Denver office";
		eName[4] = "mcarter";
		eName[5] = "ljhernan";
		eName[6] = "ldavis";
		eName[7] = "ssuazo";
		eName[8] = "dsandin";
		eName[9] = "lhobbs";
		eName[10] = "abenham";
		eName[11] = "bmatthews";
		eName[12] = "jtopmiller";
		eName[13] = "gwalhood";
		eName[14] = "msantistevan";
		eName[15] = "bthomas";
		eName[16] = "choover";
		eName[17] = "dbeene";
		eName[18] = "badams";
		eName[19] = "rrichardson";
		eName[20] = "bskalko";
		eName[21] = "mdahlberg";
		eName[22] = "dszarka";
		 eName[23] = "lsmall";
		 eName[24] = "jolson";
		
		 if (id < 4){  //for the addresses with an attached subject field for the email
		    window.location.href = "mailto:" + eName[id] + "@" + eDomain + ".com" + eAttached[id];
			}
		else{
			window.location.href = "mailto:" + eName[id] + "@" + eDomain + ".com" ;
		     }
	}		

   
	
//-->