var myrules = {
	'.iskContentElement2623 a' : function(el){
		el.onclick = function(){
			var popW = 600, popH = 485;
	
			newWindow = window.open(el.attributes['href'].nodeValue,'mainWin','toolbar=no,location=no,scrollbars=yes,resizable=no,width='+popW+',height='+popH+'');
			newWindow.focus();
			
			return false;
		}
	},
	'#popUpLocalJobs' : function(el){
		el.onclick = function(){
			var popW = 600, popH = 485;
	
			newWindow = window.open(el.attributes['href'].nodeValue,'mainWin','toolbar=no,location=no,scrollbars=yes,resizable=no,width='+popW+',height='+popH+'');
			newWindow.focus();
			
			return false;
		}
	}
};

Behaviour.register(myrules);