// emailaddress.js

function myMail(subject) {
   addr = "tmancini" + "@" + "di.uniroma1.it";
   href = addr;
   
   relPath = "http://www.dis.uniroma1.it/~tmancini/";
   
   if (subject != null)
	  href = addr + "?subject="+subject+"";

   return "<a href=\"mai"+"lto:" + href + "\">"+addr+"</a>&nbsp;(\<a href=\""+relPath+"pgp.html\" target=_blank>PGP</a>)";
}

function writeMyMail(subject) {
   document.write(  myMail(subject) );
}

