  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 ) {
		subject = "";
	}
	s += "?subject=" + "UUCR " + subject;
	top.location = s;
	return;
  }
