Underground organizer of the safekeeping of
2,500 Jewish children during the Holocaust -
a Righteous Among the Nations -and a
2007 Nobel Peace Prize nominee
September 21, 2007
- September 29, 2007
WARSAW AUTUMN 2007
50th International Festival of Contemporary Music
Warsaw, Poland
2007 ARTSLINK PROJECTS AWARDS RECIPIENTS FROM POLAND
Wyspa Art Institute, Gdansk, Poland
Monika Sosnowska representing Poland at the 52nd Venice Biennale (2007), curator: Sebastian Cichocki
Pogram director of Kronika Gallery in Bytom, and a 2003 fellow of the Polish Cultural Institute in NYC
Judaica Foundation's 2007 Fourth Annual Felek Award
conferred upon Prof. Wladyslaw Bartoszewski
September 9, 2006
- October 1, 2006
41st INTERNATIONAL FESTIVAL "WRATISLAVIA CANTUS"
August 26, 2006
- September 1, 2006
Raster Gallery VILLA WARSAW
cutting-edge arts festival
Willa Warsaw, Warsaw, Poland
August 4, 2006
- August 12, 2006
61st INTERNATIONAL CHOPIN FESTIVAL IN DUSZNIKI ZDROJ
July 2, 2006
- July 15, 2006
XIII ANNUAL INTERNATIONAL CONTEMPORARY DANCE CONFERENCE AND PERFORMANCE FESTIVAL IN BYTOM
July 1, 2006
- July 9, 2006
16th JEWISH CULTURE FESTIVAL IN KRAKOW
June 30, 2006
- July 8, 2006
INTERNATIONAL THEATRE FESTIVAL MALTA
June 24, 2006
- August 1, 2006
WARSAW SUMMER JAZZ DAYS
June 3, 2006
20th INTERNATIONAL POSTER BIENNALE IN WARSAW
the world's oldest and most esteemed celebration of the art of the poster
Poster Museum in Wilanow, Warsaw, Poland
February 2006
Architectural Competition Launched for the new Museum of Modern Art in Warsaw
Krzysztof Wodiczko - laureate of the prestigeous 2006 Katarzyna Kobro Award
Lodz, Poland
The "Felek" statuette, dedicated to the memory of Rafael F. Scharf, has been awarded for the year 2006 to Professor Anthony Polonsky of Brandeis University
November 19, 2005
- January 22, 2006
Krzysztof Wodiczko MONUMENT THERAPY & PUBLIC PROJECTIONS 1996-2004
Zacheta Art Gallery & Bunkier Sztuki, Poland
October 22, 2005
Rafal Blechacz
wins Warsaw's 15th International Chopin Piano Competition as first Polish laureate since 1975's Krystian Zimerman
Warsaw, Poland
September 3, 2005
- October 30, 2005
DOCKWATCHERS
contemporary art exhibit at Gdansk Shipyard on the Solidarity's 25th Anniversary
Wyspa Institute of Art, Gdansk, Poland
August 26, 2005
JEAN MICHAEL JARRE
to perform in Gdansk Shipyard on the Solidarity's 25th Anniversary
Gdansk, Poland
August 6, 2005
- August 13, 2005
9th SHAKESPEARE FESTIVAL
Gdansk, Gdynia, Sopot, Poland
June 30, 2005
Finnish architects Lahdelma & Mahlamäki win intl. comp. for the design of a building for the Museum of the History of Polish Jews in Warsaw
Warsaw, Poland
June 30, 2005
- December 31, 2005
Arthur Szyk JUSTICE ILLUMINATED: THE ART OF ARTHUR SZYK
six month tour of Poland
Jewish Historical Inst., Warsaw; Poznanski Palace, Lodz; Center for Jewish Culture, Krakow
May 5, 2005
- May 9, 2005
ART POZNAN 2005
Art Fair
Poznan, Poland
March 16, 2005
Founding of a Museum of Modern Art in Warsaw
Poland, Warsaw
January 25, 2005
The Museum of The History of Polish Jews is officially born
Warsaw, Poland
January 1, 2005
- December 31, 2005
Jewish monthly Midrasz publishes its 4th periodic issue in English featuring highlights from the last few years
Warsaw, Poland
September 1, 2004
- November 30, 2005
Sanford Biggers THE AFRONOMICAL WAY
A-I-R Laboratory CCA Ujazdowski Castle, Warsaw, Poland
June 25, 2004
- July 4, 2004
THE NEW YORKERS AND THEIR FRIENDS
A homecoming festival all over Warsaw
Warsaw, Poland
April 18, 2004
- April 27, 2004
Warsaw International Jewish Film Festival Ha-Motiv Ha-Jehudi 2004
Warsaw, Poland
March 22, 2004
- March 24, 2004
WITOLD GOMBROWICZ - OUR CONTEMPORARY
International conference to mark 2004 as the "Year of Gombrowicz"
Jagiellonian University, Krakow, Poland
\")");*/
//if(securityError == 0){
if (errors) {
alert('The following error(s) occurred:\n'+errors);
document.MM_returnValue = false
//return false
//document.MM_returnValue = (errors == '');
}else{
//return true
document.MM_returnValue = true
}
//}else{
//document.MM_returnValue = false
//}
}
function processCaptcha(){
args1=processCaptcha.arguments;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
var http = new ActiveXObject("Microsoft.XMLHTTP");
}else{
var http = new XMLHttpRequest();
}
//valStr = validationString
process();
var nocache = 0;
function process(){
var urlchallenge= Recaptcha.get_challenge();
var urlresponse= Recaptcha.get_response();
nocache = Math.random();
http.open('get', 'captcha.cfm?challenge='+urlchallenge+'&response='+urlresponse+'&nocache='+nocache);
http.onreadystatechange = insertReply;
http.send(null);
}
function insertReply(){
if(http.readyState == 4){
document.getElementById("content").innerHTML = http.responseText
var response = http.responseText;
var validCheck = response.match('security');
if (validCheck >= 0){
//validate other fields
var i,p,q,nm,test,num,min,max,errors='';
for (i=0; i<(args1.length-2); i+=3) {
test=args1[i+2]; val=MM_findObj(args1[i]);
if (val) {
nm=args1[i];
if ((val=val.value)!="") {
if (test.indexOf('isEmail')!=-1) {
p=val.indexOf('@');
if (p<1 || p==(val.length-1))
errors+='- '+document.getElementById("error" + nm.substring(nm.length-1,nm.length)).innerHTML+' must contain an e-mail address.\n';
} else
if (test!='R') {
num = parseFloat(val);
if (isNaN(val))
errors+='- '+document.getElementById("error" + nm.substring(nm.length-1,nm.length)).innerHTML+' must contain a number.\n';
if (test.indexOf('inRange') != -1) {
p=test.indexOf(':');
min=test.substring(8,p); max=test.substring(p+1);
if ( min > num || max < num)
errors+='- '+document.getElementById("error" + nm.substring(nm.length-1,nm.length)).innerHTML+' must contain a number between '+min+' and '+max+'.\n';
}
}
}else
if (test.charAt(0) == 'R'){
errors += '- '+document.getElementById("error" + nm.substring(nm.length-1,nm.length)).innerHTML+' is required.\n';
}
}
}
//end of valiadting field
// if errors then show errors otherwise submit.
if (errors) {
alert('The following error(s) occurred:\n'+errors);
Recaptcha.reload();
}else{
document.surveyform.submit();
}
//var ret = MM_validateForm(valStr)
//document.getElementById("surveyform").onSubmit=function(){MM_validateForm(valStr);return document.MM_returnValue};
//document.surveyform.submit();
//alert(ret)
}else{
Recaptcha.reload();
}
}
}
}
function pausecomp(millis)
{
var date = new Date();
var curDate = null;
do { curDate = new Date(); }
while(curDate-date < millis);
}
//-->