var myrules = {
	'.Cards a' : function(el){ /* PopUps for Cards Starts */
		el.onclick = function(){
			newwindow=window.open(this.href,'PlayingCard','width=320,height=450,top=100,left=100');
	  if (window.focus) {newwindow.focus()}
	  return false;
		}
	}	/* PopUps for Cards Ends */
};

Behaviour.register(myrules);

