// hide email script
function getEmail(nr,ownStyle){
	var domain = "beamhead.se";
	var persons= new Array(3);
	persons[0] = "staffan.linder";
	persons[1] = "christer.hedlund";
	persons[2] = "viktor.linder";
	persons[3] = "info";
	var recipient = persons[nr] + "&#64;" + domain;
	var url = "mailto:" + recipient;
	
	if(ownStyle==1){
		//<a is not included which make it possible to set a customized style
		document.write(" href='" + url +"'>"+recipient+"</a>");
	}else{
		document.write("<a href='" + url +"'>"+recipient+"</a>");
	}
}