<!--
// Handles rollover images for NN3+ and IE4+
var loaded = new Array();

function F_loadRollover(image,imageName, imageName2) {
   if (image && image.src &&
    (null == image.out || typeof(image.out) == typeof(void(0)))) {
      s = image.src;

      image.out = new Image();
      if (imageName2.lastIndexOf('/') >= 0 || imageName2.lastIndexOf('\\') >=0) {
         s = imageName2;
      } else {
         i = s.lastIndexOf('/');
         if (i<0) i = s.lastIndexOf('\\');
         if (i<0) { s = imageName2; }
         else     { s = s.substring(0,i+1) + imageName2; }
      }
      image.out.src = s;

      image.over = new Image();
      if (imageName.lastIndexOf('/') >= 0 || imageName.lastIndexOf('\\') >=0) {
         s = imageName;
      } else {
         i = s.lastIndexOf('/');
         if (i<0) i = s.lastIndexOf('\\');
         if (i<0) { s = imageName; }
         else     { s = s.substring(0,i+1) + imageName; }
      }
      image.over.src = s;

      loaded[image.name] = image;
   }
}

function F_roll(imageName,over) {
   if (document.images) {
      if (over) { imageObject = "over"; }
      else      { imageObject = "out"; }
   image = loaded[imageName];
   if (image) {
       ref = eval("image."+imageObject);
       if (ref) image.src = eval("image."+imageObject+".src");
   }
   if (window.event)
      window.event.cancelBubble = true;
   }
}

function terug (){
	history.go(-1);
}

function sluit (){
	self.close();
}

function pop(url, width, height){			
	imgwin = window.open(url,'otherwin','toolbar=0,locationbar=1,directories=0,menubar=0,statusbar=1,titlebar=1,scrollbars=0,resizable=0,width=' + width + ',height=' + height + ',left=100,top=100');
}


function popup_pagina26_voegtoe(){
	//bla=window.open("pagina26_voegtoe.html","displayWindow","toolbar=no,scrollbars=yes")
	window.open("pagina26_voegtoe.html","displayWindow","toolbar=no,width=700,height=500")
}

function popup_pagina26_reageer(){
	//bla=window.open("pagina26_reageer.html","displayWindow","toolbar=no,scrollbars=yes")
	window.open("pagina26_reageer.html","displayWindow","toolbar=no,width=700,height=500")
}

function popup_portf(onderwerp){
	//window.open("portfolio.php?"&onderwerp,"portfolio","toolbar=no,width=830,height=400")
	window.open("portfolio.php?ordertype=" + onderwerp,"portfolio","toolbar=no,width=830,height=400")
}

function printje(){
	window.print();
}

function FoooKus(){
	self.focus();
}
//-->