function mail_b(type, box, domain) {
    if (type == "link") {
        document.write("<a href=\"mailto:"+box+"@"+domain+"\">"+box+"@"+domain+"</a>");
    }
    else {
        document.write(box+"@"+domain);
    }
}

function showd() {
	document.getElementById("descript").style.display="block";
	document.getElementById("reply").style.display="none";
	document.getElementById("scontent").className="content";
	document.getElementById("scomment").className="commenth";
}

function showr() {
	document.getElementById("descript").style.display="none";
	document.getElementById("reply").style.display="block";
	document.getElementById("scontent").className="contenth";
	document.getElementById("scomment").className="comment";
}

function findx() {
	document.getElementById("s").value="";
}

function findy() {
	if(document.getElementById("s").value=="") {
		document.getElementById("s").value="Найти...";
	}	
}

