//--------------------------------------------------------
function sDirE(preadd)						// rets String email addr
{
var arroba="@";
var v2="jtrujillo";
var v3="net";
punt=".";

return preadd+arroba+v2+punt+v3;
}
//--------------------------------------------------------
function wDirE(preadd,post)							// Escriu addr
{
document.write(sDirE(preadd));
document.write(post);
}
//--------------------------------------------------------
function wAddr3(preadd,post,txtLinked)							// Escriu addr
{
document.write('<A href="mailto:');
document.write(sDirE(preadd));
document.write('"');
document.write(post);
document.write(">");
document.write(txtLinked);
document.write("</A>");
}
//--------------------------------------------------------
function wDirEL(preadd,post)						// Escriu tot el link sense tancar
{
document.write('<A href="mailto:');
document.write(sDirE(preadd));
document.write('"');
document.write(post);
document.write(">");
}
//--------------------------------------------------------
function wDir(preadd,cls)
{
if (cls=="")
    wDirEL(preadd,'');
else
    wDirEL(preadd,' class="'+cls+'"');

wDirE(preadd,"</A>");
}

