<!--
var prevObject  =null;
var huidigObject=null;
function Show(objectID){
 if (prevObject!=null){
     Hide2 (prevObject); Hide2(huidigObject);
 }
 if ( (objectID=='obj3') || (objectID=='obj1') || (objectID=='link2') )  huidigObject=objectID;
 domstyle = findDOM(objectID,1);
 domstyle.visibility = "visible";
 prevObject = objectID;
}
function Show2(objectID){
 domstyle = findDOM(objectID,1);
 domstyle.visibility = "visible";
}
function Hide2(objectID){
  domstyle = findDOM(objectID,1);
  domstyle.visibility = "hidden";
}

function Hide(objectID){
 domstyle = findDOM(objectID,1);
 domstyle.visibility = "hidden";
// if ( (huidigObject=='obj3') || (huidigObject=='obj1') || (huidigObject=='link2') )  Show2(huidigObject);
 Show2(huidigObject);
}
function Move(objectID,newX,newY){
 domstyle = findDOM(objectID,1);
 domstyle.left = newX; domstyle.top = newY;  
}
function findLivePageHeight(){
 if (window.innerHeight != null) return window.innerHeight; 
 if (document.body.clientHeight != null) return document.body.clientHeight;
 return (null);
}
function findLivePageWidth(){
 if (window.innerWidth != null) return window.innerWidth;
 if (document.body.clientWidth != null) return document.body.clientWidth;
 return (null);
}

///// 1/8/07 verplaatst vanuit start.html
function closeWindow(){
  if (myWin != null) {myWin.close(); myWin = null;}
}
function ShowArtikel(artikel,breed,hoog){
 if (myWin !=null){closeWindow(); myWin = null;}   
  myWin = open(artikel,'hulpvenster','width='+breed+ ',height='+hoog+ ',scrollbars=yes,dependent=yes,screenX=0,screenY=0,left=0,top=0');
  myWin.focus();
}

/* 1/8/07 niet in gebruik
// niet in gebruik zie PopupJeugd
function ShowArtikel6(artikel,breed,hoog){
 myWin_6 = open(artikel,'hulpvenster3','width='+breed+ ',height='+hoog+ ',scrollbars=yes,dependent=no,screenX=0,screenY=0,left=0,top=0');
 myWin_6.focus();
}
// niet in gebruik in start.html
function ShowArtikel2(artikel,breed,hoog){
 if (myWin !=null){closeWindow(); myWin = null;}   
  myWin = open(artikel,'hulpvenster','width='+breed+ ',height='+hoog+ ',scrollbars=no,dependent=yes,screenX=0,screenY=0,left=0,top=0');
  myWin.focus();
}

/*
function popUp(evt,objID){
 if (isDHTML) {
       domstyle = findDOM(objID,1);
       dom      = findDOM(objID,0);
       state    = domstyle.visibility; 
        
       if ( (state == "visible") || (state == "show") ) domstyle.visibility = "hidden";
        else {
          if (evt.pageY) {
              topVal = evt.pageY + 2;
               }
          else {
             if (event.y) {
                topVal = event.y + 4 + document.body.scrollTop;
		   }
           }
          
         // met volgende regels, zijn eerdere leftVal / topVal berekeningen ongeldig gemaakt 
         if ((objID=='jeugd') || (objID=='truuks')){
            topVal=topVal+10 ; leftVal = 5;
         }
         else{
         topPos = findTop('jeugd0');  // de bovenrand van id="jeugd0"
         leftVal = optionalWidth-200; topVal  = topPos+30;  
         }
         // einde opmerking leftVal en topVal

         domstyle.top = topVal;
         domstyle.left= leftVal;
         domstyle.visibility = "visible";
         alert(leftVal);
         }
 }
}

function findTop(objtopID){
 var domStyle = findDOM(objtopID,1);
 var dom      = findDOM(objtopID,0);
 if (domStyle.top)
    return domStyle.top;
 if (domStyle.pixelTop)
    return domStyle.pixelTop;
 if (dom.offsetTop)
     return dom.offsetTop;
 return (null);
}
*/
//-->


