function domt(towho,hos,dotwhat) {//v1.0
	document.write("<a href=" + "mai" + "lto:" + towho + "@" + hos + "." + dotwhat + ">" + towho + "@" + hos + "." + dotwhat + "</a>" )
}
function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}
