﻿// get anchor mail header
function getmailh(login,serv)
{
	document.write('<a href="mailto:'+login+"@"+serv+'">');
}

// get full mail anchor
function getmailf(login,serv)
{
	eml=login+"@"+serv;
	document.write('<a href="mailto:'+eml+'">'+eml+'</a>');
}
