if(document.all && !document.getElementById) {
    document.getElementById = function(id) {
         return document.all[id];
    }
}
// above allows old non-DOM browsers to revert to document.all

var redirTime = "2000";
var redirURL = "http://www.slowfood.fr/france/who_fr.html";
function redirTimer() { 
  self.setTimeout("self.location.href = redirURL;",redirTime); 
}


var win = null;
function convivium_pop(convURL) {
  if (win) win.close();
  win = window.open(convURL,'convivium','height=350,width=590,innerHeight=350,innerWidth=590,titlebar=0,left=20,screenX=20,top=0,screenY=0,alwaysRaised=1');
  self.name='mainwin';
}

function city_pop(convURL) {
  if (win) win.close();
  win = window.open(convURL,'convivium','height=700,width=590,innerHeight=700,innerWidth=590,titlebar=0,left=20,screenX=20,top=0,screenY=0,alwaysRaised=1');
  self.name='mainwin';
}

var win2 = null;
function map_pop(mapURL,params) {
  if (win2) win2.close();
  win2 = window.open(mapURL,'map',params);
  self.name='mainwin';
}



