function CustomArticle() {}

CustomArticle.init = function(bEditable) {}

CustomArticle.openPopup = function(sURL, sWindowId) {
    var newWindow = window.open(sURL, sWindowId, "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=Yes,width=500,height=600,left=200,top=100");
    if (newWindow)
    {
        newWindow.focus();
    }
    else
    {
        alert('U heeft een popup blocker geactiveerd, deactiveer deze of houd de control toets ingedrukt terwijl u op de link klikt');
    }
}