// Created by Rossman

function popMeUp(imgURL) {
	window.open('/popup/index.jsp?img='+imgURL, 'richMediaAd', 'resizable=1,scrollbars=1,left=0,top=0,height=200,width=200');
	return false;
}

var myrules = {
	'.richmediaimg a' : function(el){
		el.onclick = function(){
			// we should open the window here!
			popMeUp(this.href);
			return false;
		}
	}
};

Behaviour.register(myrules);