/*
 * A tags with class "poplink" get opened in new window
 */
$(function(){
	$('A.poplink').click(function(){
		window.open(this.href);
		return false;
	});
});
