// electron mail hider :)

function hide_me(lhs)
{
   document.write("&lt;input type='hidden' name='_1_MailTo' value='"+lhs"+@apogeeanalytics.com' /&gt;");
}



function email_custom(domain,text,subject,to){
	if (text){
		text=text
	}else{
		text=to+"@"+domain
	}
	
	if(subject!=''){
		var email="<a href='";
		email += "mailto:";
		email += to;
		email += "@"+domain;
		email += "?SUBJECT=";
		email += subject;
		email += "'>";
		email += text;
		email +="</a>";
		
		document.write(email);
	
	} else {
	
		var email="<a href='";
		email += "mailto:";
		email += to;
		email += "@"+domain;
		email += "'>";
		email += text;
		email +="</a>";
		
		document.write(email);
	}
}