function mk_em( e1, e2, css, nm ) {
  if ( nm == null )
    document.write( '<a href="mailto:' + e1 + '@' + e2 + '" class="' + css + '">' + e1 + '@' + e2 + '</a>' );
  else
    document.write( '<a href="mailto:' + e1 + '@' + e2 + '" class="' + css + '">' + nm + '</a>' );
} // mk_em

function popup(w1, h1, img_nm, ttl) {
var time = new Date();
	myWin = open("", "displayWindow" + time.getTime(), "width=" + w1 + ",height=" + h1 + ",maximize=no,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resize=no");
	myWin.focus();
	tx = '<html><head><title>' + ttl + '</title></head>';
	tx += '<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>';
	tx += '<table width="100%" border=0 cellspacing=0 cellpadding=0 height="100%" background="' + img_nm + '">';
	tx += '<tr><td width="' + w1 + '" height="' + h1 + '">';
	tx += '<img src="/i/n.gif" width=' + w1 + ' height=' + h1 + ' onClick="window.close()" alt="Click to close" title="Click to close">';
	tx += '</td></tr>';
	tx += '</table>';
	tx += '</body></html>';
	myWin.document.open();
	myWin.document.write(tx);
	myWin.document.close();
}