function show(arg)
{
if (document.getElementById(arg).style.display == "none")
	{document.getElementById(arg).style.display = "block";}
else
	{document.getElementById(arg).style.display = "none";}

if (arg == "all_comments")
	{
	if (document.getElementById('all_comments').style.display == "block")
		{document.getElementById('show_comments').style.display = "none";}
	else
		{document.getElementById('show_comments').style.display = "inline";}
	}
}

function hide(arg)
{document.getElementById(arg).style.display = "none";}

function mail(u, s, d, img)
{
var l="ilto";
	if (img == "txt")
		{document.write("<a"+" href="+"ma"+l+":"+u+"&#64;"+s+ "." +d+">"+u+"&#64;"+s+ "." +d+"</a>");}
	else
		{document.write("<a"+" href="+"ma"+l+":"+u+"&#64;"+s+ "." +d+">"+"<img id=\"ico_m\" src=\"/img/"+img+"\" alt=\"E-mail\" /></a>");}
}