function attachNewsletterPop() {
	var table = document.getElementById( "newsletter-list" );
	var links = table.getElementsByTagName( "a" );
	var i = links.length;
	
	while( i-- > 0 ) {
		links[i].onclick = function() {
			window.open( this.href, "newsletter_popup", "width=650,height=900,scrollbars=yes" );
			return false;
		}
	}
}

addLoadEvent( attachNewsletterPop );