<!--
function PopUpWin1() {
  window.open("popup1.htm","popup","width=450,height=370");
}

function PopUpWin2() {
  window.open("popup2.htm","popup","width=450,height=370");
}

function SetFocus() {
  window.focus();
  var xpos = screen.width;
  var ypos = screen.height;
  xpos = (xpos - 450) / 2;
  ypos = (ypos - 450) / 2;
  self.moveTo(xpos,ypos);
  document.form1.email.focus();
}

function PopUpPhoto(i,w,h) {
  var locationdoc = "show_image.asp?img=" + i;
  window.open(locationdoc,"photo","width=" + w + ",height=" + h);
}

function AddFavo(l) {
  var strLink;
  var strAlert;
  if(l == "nl") {
    strLink = "Debra Belgium vzw";
    strAlert = "Uw browser komt niet overeen met de vereisten. U moet de website handmatig toevoegen aan uw favorieten.";
  }
  else {
    strLink = "Debra Belgium asbl";
    strAlert = "Système requis minimum: Internet Explorer 5.0. Vous deves ajouter notre site à vos favoris manuelle.";
  }
  if((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4)) {
    window.external.AddFavorite(location.href,strLink);
  }
  else alert(strAlert);
}
//-->
