function popWin(url, width)
{
	newwindow=window.open(url,'name','width='+width+',scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

$(function() {
	$('z#success .person').each(function() {
		$(this).bind('click', function(e) {
			if (e.shiftKey) {
				window.open($('a', this).attr('href'), new Date());
			} else if (e.ctrlKey) {
				window.open($('a', this).attr('href'), '_blank');
			} else {
				document.location = $('a', this).attr('href');
			}
			return false;
		});
	});
});