// JavaScript Document t.b.v. images

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='images/sluiten.gif' border=0 align='");
mw.document.write(where + "'></a>");}

