function MailTo(name1, name2, text1, text2, subject) {

var mytext = "";
var email1 = name1;
var email2 = name2;
var text1 = text1;
var text2 = text2;
var email3 = subject;
mytext = ("<a href=\"" + "mail" + "to:" + email1 + "@" + email2 + "?subject=" + email3 + "\"><span class=\"linkmail\">" + text1 + text2 + "</span></a>");
return mytext	;
};

