String.prototype.printAddr = 
function (_whole,_preface,_postface,_face)
{
  _whole=
  _preface+
  "@"+
  this+
  (_postface || '')
  document.write('<a href="mailto:'+_whole+'" class="mail_text">'+(_face||_whole)+'</a>');

}

