// ---------------------------------------------------------------------
// Functie om de pagina te printen
// ---------------------------------------------------------------------
fnPrintThisPage = function() {
	this.print();
}


function HideArticle(){
      var oArticle = document.getElementById("HideWhenForm");
      if(oArticle){
        oArticle.style.display = 'none';
      }
	}
function openLinkWindow(objLink, width, height) {
     var id = objLink.ID;
     var leftPos = (screen.availWidth - width) / 2;
     var topPos = (screen.availHeight - height) / 2;
     if(id == ""){
        id = "popup"
     }
     var linkWindow = window.open(objLink.href, id, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=" + width + ",height=" + height + ",left=" + leftPos + ",top=" + topPos);
    linkWindow.focus();
    return false;
  }
