var DHTML = (document.getElementById || document.all || document.layers);function getObj(name){   if (document.getElementById) {   this.obj = document.getElementById(name);   this.style = document.getElementById(name).style;   }   else if (document.all) {   this.obj = document.all[name];   this.style = document.all[name].style;   }   else if (document.layers) {   this.obj = document.layers[name];   this.style = document.layers[name];   }}//WM_preloadImages()//Source: Webmonkey Code Library//(http://www.hotwired.com/webmonkey/javascript/code_library/)function WM_preloadImages() {  if (document.images) {    if (typeof(document.WM) == 'undefined'){      document.WM = new Object();    }    document.WM.loadedImages = new Array();    var argLength = WM_preloadImages.arguments.length;    for(arg=0;arg<argLength;arg++) {      document.WM.loadedImages[arg] = new Image();      document.WM.loadedImages[arg].src = WM_preloadImages.arguments[arg];    }  }}// WM_imageSwap()// Source: Webmonkey Code Library// (http://www.hotwired.com/webmonkey/javascript/code_library/)function WM_imageSwap(daImage, daSrc){  var objStr,obj;  if(document.images)   {    if (typeof(daImage) == 'string')     {      objStr = 'document.' + daImage;      obj = eval(objStr);      obj.src = daSrc;    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {      daImage.src = daSrc;    }  }}function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}// popImg()// global variable for subwindow referencevar newImgWindow;// generate and fill the new windowfunction popImg(imgSrc,imgCaption,winWidth,winHeight) {    var left = parseInt((screen.availWidth/2) - (winWidth/2));    var top = parseInt((screen.availHeight/2) - (winHeight/2));    var winFeatures = 'width=' + winWidth + ',height=' + winHeight + ',left=' + left + ',top=' + top + ',resizable,scrollbars';    // make sure it isn't already opened    if (!newImgWindow || newImgWindow.closed) {        newImgWindow = window.open("","sub",winFeatures);    } else if (newImgWindow.focus) {        // window is already open and focusable, so bring it to the front        newImgWindow.focus();    }    // assemble content for new window    var newContent = '<html><head>';    newContent += '<title>7x11</title>';    newContent += '<link rel="stylesheet" href="../zevenxelf.css" type="text/css" />';    newContent += '<link rel="stylesheet" href="pressroom.css" type="text/css" />';    newContent += '</head><body>';    newContent += '<p align="center">';    newContent += '<br /><br />';    newContent += '<img src="' + imgSrc + '" alt="" />';    newContent += '</p><p align="center">'+ imgCaption + '<br /><br />';    newContent += '<a href="javascript:window.close();">venster sluiten</a>';    newContent += '</p>';    newContent += '</body></html>';    // write HTML to new window document    newImgWindow.document.write(newContent);    newImgWindow.document.close(); // close layout stream}// popDoc()var newDocWindow;function popDoc(theDoc,winWidth,winHeight) {    var left = parseInt((screen.availWidth/2) - (winWidth/2));    var top = parseInt((screen.availHeight/2) - (winHeight/2));    var winFeatures = 'width=' + winWidth + ',height=' + winHeight + ',left=' + left + ',top=' + top + ',resizable,scrollbars';    newDocWindow = window.open(theDoc,"sub",winFeatures);    newDocWindow.focus();}