function email(sname){
	s1 = "mailto:";
	s2 = "@";
	s3 = "mail.ru";
	s = s1+sname+s2+s3;
	window.location.href = s;
}