				function f_address(id, address) {
				   var str = unescape(address+"%40");
				   var z = "ssangyong-vostok.ru";
				   var x = document.createElement('a');
				   x.setAttribute("href", "mailto:" + str + z);
				   x.setAttribute("onmouseover", "tooltip.show('Написать письмо');");
				   x.setAttribute("onmouseout", "tooltip.hide();");
				   var y = document.createElement('img');
				   x.appendChild(y);
				   y.setAttribute("src", "/images/mailto.png");
				   document.getElementById(id).appendChild(x);
				}
