function fadein() {
  if (navigator.appName == "Microsoft Internet Explorer") {
    fadeit.style.filter="blendtrans(duration=2)";
    if (fadeit.filters.blendtrans.status != 1) {
      fadeit.filters.blendtrans.apply();
      fadeit.style.visibility="visible";
      fadeit.filters.blendtrans.play();
    }
  }
  else {fadeit.style.visibility="visible";}
}
function ShowDetail (link) {
  var popUpWidth = 700;
  var popUpHeight = 355;
  var popUpX = (screen.width / 2) - popUpWidth / 2;
  var popUpY = (screen.height / 2) - popUpHeight / 2;
  var pos = "left=" + popUpX + ",top=" + popUpY;

  DetailWin = window.open(link, "TheDetailWin", "width=" + popUpWidth + ",height=" + popUpHeight + ","+ pos);
  DetailWin.focus();
}

function ShowCBoutiques (link) {
  var popUpWidth = 542;
  var popUpHeight = 512;
  var popUpX = (screen.width / 2) - popUpWidth / 2;
  var popUpY = (screen.height / 2) - popUpHeight / 2;
  var pos = "left=" + popUpX + ",top=" + popUpY;

  BoutiqueWin = window.open(link, "TheBoutiqueWin", "scrollbars=yes,width=" + popUpWidth + ",height=" + popUpHeight + ","+ pos);
  BoutiqueWin.focus();
}

function ShowDBoutiques (link) {
  var popUpWidth = 542;
  var popUpHeight = 482;
  var popUpX = (screen.width / 2) - popUpWidth / 2;
  var popUpY = (screen.height / 2) - popUpHeight / 2;
  var pos = "left=" + popUpX + ",top=" + popUpY;

  BoutiqueWin = window.open(link, "TheBoutiqueWin", "scrollbars=yes,width=" + popUpWidth + ",height=" + popUpHeight + ","+ pos);
  BoutiqueWin.focus();
}

function ShowAcc (link) {
  var popUpWidth = 350;
  var popUpHeight = 500;
  var popUpX = (screen.width / 2) - popUpWidth / 2;
  var popUpY = (screen.height / 2) - popUpHeight / 2;
  var pos = "left=" + popUpX + ",top=" + popUpY;

  BoutiqueWin = window.open(link, "TheBoutiqueWin", "scrollbars=yes,width=" + popUpWidth + ",height=" + popUpHeight + ","+ pos);
  BoutiqueWin.focus();
}

function ShowLegal (link) {
  var popUpWidth = 390;
  var popUpHeight = 290;
  var popUpX = (screen.width / 2) - popUpWidth / 2;
  var popUpY = (screen.height / 2) - popUpHeight / 2;
  var pos = "left=" + popUpX + ",top=" + popUpY;

  LegalWin = window.open(link, "TheLegalWin", "width=" + popUpWidth + ",height=" + popUpHeight + ","+ pos);
  LegalWin.focus();
}

function ShowImprint (link) {
  var popUpWidth = 310;
  var popUpHeight = 275;
  var popUpX = (screen.width / 2) - popUpWidth / 2;
  var popUpY = (screen.height / 2) - popUpHeight / 2;
  var pos = "left=" + popUpX + ",top=" + popUpY;

  ImprintWin = window.open(link, "TheImprintWin", "width=" + popUpWidth + ",height=" + popUpHeight + ","+ pos);
  ImprintWin.focus();
}