function new_window(url) {
	newwindow=window.open(url,'name','resizable=yes,scrollbars=yes,width=500,height=490,top=10,left=10');
	if (window.focus)	{
		newwindow.focus();
	}
}

// jQuery is required to make this functional
$(function() {
	$('.popup-link').attr('onclick', 'new_window(this.href); return false;');
});
