<!--
function myMailto(user, host) {
	e = user + "@";
	for (i = 0; i < host.length - 1; i++) { e = e + host[i] + "."; }
	e = e + host[host.length - 1] ;
	document.writeln("<a href='mailto:" + e + "'>" + e + "</a>");
  }
//-->

/* Whole LI clickable in further info box  */

function divlinks() {
	var furtherinfo = document.getElementById('furtherinfo');
	if (furtherinfo) {
		var divTags = furtherinfo.getElementsByTagName('li');
		for (var i=0; i<divTags.length; i++) {
			//divTags[i].className = 'link';
			divTags[i].onmouseover=function() {
				this.className+=" hover";
			}
			divTags[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" hover"), "");
			}
		}
	}
}
window.onload = divlinks;

