WEEKLY SERIES
The World in Words
THOUGHT LEADERS
Lucian Bebchuk
Shlomo Ben-Ami
Boskin, Sinn
Ian Buruma
Davies, Shiller
Castaneda, Haass, Rocard
J. Bradford DeLong
Esther Dyson
Barry Eichengreen
Fan Gang
NEW!
Martin Feldstein
Joschka Fischer
Harold James
Simon Johnson
NEW!
Bjorn Lomborg
Yuriko Koike
NEW!
Dominique Moisi
Joseph S. Nye
Chris Patten
Dani Rodrik
Kenneth Rogoff
Nouriel Roubini
Jeffrey D. Sachs
Peter Singer
Robert Skidelsky
Michael Spence
NEW!
Joseph E. Stiglitz
Naomi Wolf
GLOBAL PERSPECTIVES
Earth in the Balance
The Human Rights Revolution
The Frontiers of Growth
Islam and the World
INTERNATIONAL INSIGHT
Into Africa
The Asian Century
China Stands Up
Europe at Home and Abroad
European Economies
Latin America
A Window on Russia
MIND AND MATTER
Health and Medicine
Science and Society
Worldly Philosophers
SPECIAL SERIES
The Energy Challenge
NEW!
2008 Year End Series
PROJECT SYNDICATE
Commentaries
Contributors
About Us
Member Papers
Support Us
Editor's Forum
Past Surveys
function verify_login(form) { //{{{1
var data = Form.serialize(form);
var form = document.getElementById(form);
new Ajax.Request('/', { method: 'post',
asynchronous: false,
postBody: data,
onSuccess: function(originalRequest) {
var result = eval('(' + originalRequest.responseText + ')');
if (result['code'] == 0) {
alert(result['name']);
var div = $('login_error');
div.innerHTML = result['name'];
return false;
}
location.reload(true);
}});
return false;
} //}}}1
function recommend_comment(id) { //{{{1
var url = '/recommend_comment';
var pars = 'id=' + id;
new Ajax.Request( url, { method: 'get', parameters: pars,
asynchronous: false,
onSuccess: function(originalReq