<!--
function openNewWindow(URLtoOpen, windowName,windowFeatures) {
  var wndHeight = 520;
  var wndWidth = 760;
  var Xx = window.screenLeft+10;
  var Yy = window.screenTop+10;
  // var X = 0;
  // var Y = 0;
 //  if (screen.availWidth){
  //   X = (screen.availWidth / 2) - (wndWidth / 2);
 //    Y = (screen.availHeight / 2) - (wndHeight / 2);
  // }
  // Features = ',left=' + Xx + ',top=' + Yy;
   Features = ',left=' + Xx + ',top=' + Yy + ',screenX=' + Xx + ',screenY=' + Yy;
newWindow=window.open(URLtoOpen, windowName, windowFeatures+Features); 
}

function PopUpRedir(URLtoOpen, windowName,windowFeatures) {
  var wndHeight = 520;
  var wndWidth = 760;
  var Xx = window.screenLeft+10;
  var Yy = window.screenTop+10;
  // var X = 0;
  // var Y = 0;
  if (screen.availWidth){
    Xx = (screen.availWidth / 2) - (wndWidth / 2);
    Yy = (screen.availHeight / 2) - (wndHeight / 2)-120;
  }
  // Features = ',left=' + Xx + ',top=' + Yy;
   Features = ',left=' + Xx + ',top=' + Yy + ',screenX=' + Xx + ',screenY=' + Yy;
newWindow=window.open(URLtoOpen, windowName, windowFeatures+Features); 
//window.setTimeout('window.location="/boutique/"; ',7000);
redirTimer("http://www.maisondequartier.com/boutique/", 10);
}

function redirTimer(url, timer) {
//newWindow=window.open(URLtoOpen, windowName, windowFeatures+Features); 
window.setTimeout('window.location="'+url+'"',timer*1000);
}
// -->

