var abc = function(){
	window.addEvent( "domready", function() {
		abc.init();
	});
	var _P = {
		attachEvents : function() {
			$$( ".popup" ).addEvent( "click", function( evt ) {
				new Event( evt ).stop();
				window.open( $$( this ).getProperty( "href" ), "win", "menubar=0, location=0, toolbar=0, resizable=0, status=0, width=855, height=670" );
			});
		}
	};
	return {
		init : function() {
			_P.attachEvents();
		}
	};
}();