/*
=========================================================
        Functions JavaScript [MailLink]
---------------------------------------------------------
  2007/08/31  v1.00
---------------------------------------------------------
 Copyright (C) 2007 Yeti PaPa. All rights reserved.
               http://www.yetipapa.com/
=========================================================
*/

function MailLink(sAddCode, sText) {
	if (!sAddCode) return;
	sAddCode = sAddCode.replace(/[^\d,]/g, ",");
	var sChr = sAddCode.split(",");
	var sAddress = "";
	for (var i in sChr) sAddress += "&#" + sChr[i] + ";";
	document.write(
	  String.fromCharCode(0x3C) + "a href=" + String.fromCharCode(0x22)
	  + "mai" + "lto" + String.fromCharCode(0x3A) + sAddress
	  + String.fromCharCode(0x22) + String.fromCharCode(0x3E)
	  + (sText ? sText.replace(/\[address\]/ig, sAddress) : sAddress)
	  + String.fromCharCode(0x3C, 0x2F) + "a" + String.fromCharCode(0x3E)
	  );
}

