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