// JavaScript Document


// dynamically creates an email href as to avoid spider bots
function avoidSpam (email, domain, subject)
{	
	if (domain == null)
	{
		domain = "dittberner.com";
	}
	
	if (subject == null)
	{
		subject = "customer query from website"
	}
	
	location.href="mailto:"+email+"@"+domain+"?subject="+subject;

}
