// JavaScript Document
function showImage(img,wdt,hgt) 
{rnd = Math.round(Math.random() * 10)
if (rnd <= 5) {Where ="LEFT";}
else if (rnd > 5) {Where ="RIGHT";}
mW=window.open("","WindowName","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, top=" + ((screen.height/2)-(hgt/2)) + ", left=" + ((screen.width/2) - (wdt/2)) + ", width=" + (wdt) + ", height=" + (hgt));
mW.document.write("<TITLE>Info</TITLE><BODY BACKGROUND='");
mW.document.write(img + "'>");
mW.document.write("<A HREF='javascript:self.close()'><IMG SRC='../IMG/sluiten.gif' BORDER=0 ALIGN='");
mW.document.write(Where + "'></A>");}