<!-- 

//From Prototype.js
Function.prototype.bind = function(obj) {
  var __method = this, object = obj;
    return function() {
        return __method.apply(object);
  }
}

function writeEmailAddress(rhs, lhs) 
{
	address =  lhs + "@" + rhs;
	document.write("<a href=\"mailto:" + address + "\">" + address + "</a>");
}

//-->

