//clicking on header/logo brings you to home page
var header = document.getElementById("header");
header.onclick = function()
{
	location.href="/";
}

//now about email this page
var emailLink = document.getElementById("emailLink");
if(emailLink)
{
	var link_text = "I%20would%20like%20to%20share%20with%20you%20the%20advantages%20of%20the%20Microtox%20Technology.%20%0D%0A%0D%0A";
	
	link_text += "Here is the link: " +location.href;

	link_text += "%0D%0A%0D%0A";
	
	link_text += "SDI%20offers%20you%20complete%20solution%20with%20its%20Microtox%20Technology%20to%20monitor%20and%20test%20the%20toxicity%20of%20water%20whether%20you%27re%20in%20the%20drinking%20water%2C%20wastewater%2C%20food%20and%20beverage%2C%20recreational%2C%20or%20industrial%20industries.%20%20The%20advantages%20of%20the%20Microtox%20Technology%20are%20as%20follows%3A%20%0D%0A%20-%20Only%20product%20of%20its%20kind%20designated%20as%20anti-terrorism%20technology%20and%20given%20Safety%20Act%20certification%20by%20the%20U.S.%20Department%20of%20Homeland%20Security.%20%0D%0A%20-%20Test%20data%20are%20generally%20available%20in%20about%2030%20minutes.%20%0D%0A%20-%20Ease%20of%20use%20with%20flexibility%20to%20measure%20in%20the%20laboratory%20or%20in%20the%20field%20with%20the%20portable%20unit."
	
	var body = "mailto:?subject=A friend/colleague has sent you information on Microtox technology&body=" + link_text;
		
	emailLink.setAttribute("href", body);
	
}