function init() { 
	EventDefs.get('a.popup', 'onclick').bind(onPopup); 
} 

function onPopup(ev) {
	return popup(ev.tag.href);
}

function popup(href) {
	window.open(href, '_blank', 'menubar=0,location=0,toolbar=0,height=364,width=555,resizable=1,top=320,left=100'); 
	//return false; 
} 
	
init();

