var ie=document.all
var ns6=document.getElementById&&!document.all
function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat" && !window.opera)? document.documentElement : document.body
}
function enlarge(which, e, imgwidth, imgheight){
if (ie||ns6){
crossobj=document.getElementById? document.getElementById("showimage") : document.all.showimage
var horzpos=ns6? pageXOffset+e.clientX : ietruebody().scrollLeft+event.clientX
var vertpos=ns6? pageYOffset+e.clientY : ietruebody().scrollTop+event.clientY
crossobj.style.left="20px"
crossobj.style.top="20px"
crossobj.innerHTML='<div align="right" onClick="closepreview()"><img src="'+which+'" title="Klik om te sluiten"></div>'
crossobj.style.visibility="visible"
return false
}
else
return true
}
function closepreview(){
crossobj.style.visibility="hidden"
}