// JavaScript Document

function eml(cname, name, dname) {
  document.write("<a class=\"");
  document.write(cname);
  document.write("\" href=\"mailto:");
  document.write(name);
  document.write("@");
  document.write(dname);
  document.write("\">");
  document.write(name);
  document.write(" @ ");
  document.write(dname);  
  document.write("</a>");
}

function showdiv(div) {
	document.getElementById(div).style.display = 'block';
}

function hidediv(div) {
	document.getElementById(div).style.display = 'none';
}
