function initPagetype() {
  var appLink = document.getElementById("link_naar_applicatie");
  var href = appLink.getAttribute("href");
  if (eval(show_in_iframe) && href && document.getElementById("_applicatie")) {
    var iframeHTML = '<iframe id="appframe" width="'+iframe_width+'" height="'+iframe_height+'" frameborder="0" src="'+href+'"></iframe>';
    document.getElementById("_applicatie").innerHTML = iframeHTML;
  }
  else if (href) {
    window.open(href);
  }
}