function myName()
{
return ("Le"+"x Duncan");
}

function myPhone()
{
return ("210-381"+"-3493");
}

function myMto() 
{
return ("mail"+"to"+":"+myEml());
}

function myEml()
{
return ("Le"+"x@OK"+"Fotos.com");
}

function myCon() 
{
str1 = "<a href=\"" + myMto() + "?subject=please contact me, I am interested in...";
str2="&body=[fill in topic]\">"+myEml() + "</a>";
str=str1+str2;
return str;
}

