/* Update by Mymik
   April 15, 2008: Created universal function for protection email from spam
*/
function writeMyEmail(){
   var theHTML = document.getElementById("container").innerHTML;//.body.innerHTML;
   var reg = /LOADEMAIL\[([^\]]*)\]DOMAIN\[([^\]]*)\]/;
   while(reg.test(theHTML))
	theHTML = theHTML.replace(reg, EmailShow);
   document.getElementById("container").innerHTML = theHTML;
}
function EmailShow(temp, login, domain)
{
   return "<a " + "href=\'mai" + "lto:" + login + "@" + domain + "\'>" + login + "@" + domain + "</a>";
}

