
var myrules = {
	'A.gallery_link' : function(element) {
		element.onclick = function() {
			window.open(element.href, '', 'scrollbars=no,status=no,resizable=no,width=600,height=650');
			return false;
		}
	}
};
	
Behaviour.register(myrules);
