

// Antispam Email Function -------------------------------------------------------------------------

function antispam(flname,account,domain,tld,subject_txt,body_txt) {
	if(subject_txt){
		link_strg="mailto:"+flname+" <"+account+"@"+domain+"."+tld+">?subject="+subject_txt+"&body="+body_txt;
	}else{
		link_strg="mailto:"+flname+" <"+account+"@"+domain+"."+tld+">";
	}
	document.location=link_strg;
}


// -------------------------------------------------------------------------------------------------


// Majic Div Function -------------------------------------------------------------------------

var current_contact_div = 'iem_contacts';

function kadabra2(zap_id){
	// Set the previous contact div to hidden
	document.getElementById(current_contact_div).style.display = "none";
	
	// Set the newly clicked div zap_id to be viewed
	document.getElementById(zap_id).style.display = "block";
	
	// set the value of the current contact div to the zaped_id
	current_contact_div = zap_id;

}


// -------------------------------------------------------------------------------------------------