  function makemail(name,domain,subject) {
	// This function builds a 'mailto' string using the given argument.
	// The purpose is to reduce spam by avoiding explicit addresses.
	s = "mailto:" + name + "@" + domain;
	str = new String(subject);
  	if ( str.search(/undefined/) == -1 ) {
		s += "?subject=SJRNet: " + subject;
	}
	top.location = s;
	return;
  }
