var orgsil = {
	// mail
	'.mailto' : function(el) {
		el.onclick = function() {
			this.href = "mailto:" + this.title.replace(/\[at\]/, "@");
		}
	}
};
Behaviour.register(orgsil);

// no frames
if (top != self) top.location.href = location.href;
