var myrules = {
	'.popup' : function(el){ // _target="blank" を有効にする指定
		var href = el.getAttribute('href');
		if (href){
			el.onclick    = function(){ window.open(href); return false;}
			el.onkeypress = function(){ window.open(href); return false;}
		}
	}
};

Behaviour.register(myrules);
