//Прячем адрес
//<html>
//<head>
//<script type="text/javascript" src="hide_email.js"></script>
//</head>
//<body>
//  Связаться со мной вы можете по адресу: 
//  <script>"mysite".printAddr('любая абра-катабра', 'myname', '.com');</script>
//</body>
//</html>
String.prototype.printAddr = 
function (_hamper,_prefix,_postfix,_face)
{
  _hamper=
  _prefix+
  "@"+
  this+
  (_postfix || '')
  document.write((_face||_hamper).link("mailto:"+_hamper));
}

