// Functie om het digimagazine te tonen
function nieuwVenster(theURL) {
    height = 1000;
    width = 750;
    var winl = (screen.width - width) / 2;
    var wint = (screen.height - height) / 2;
    var i = width;
    var j = height;
    var winNaam = 'Digitaal magazine';
    var features = 'scrollbars=no,resizable=no,width='+width+',height='+height+',top='+wint+',left='+winl+'';
    var popupscherm;
    popupscherm=window.open(theURL,winNaam,features);
    popupscherm.resizeTo(i,j);
    popupscherm.focus();
}

function myfunction() 
{ 
    window.open('http://www.google.nl','','width=600,height=400,resizable=no'); 
} 