function openImg(img)
{
	//rightImg = new Image();
	//rightImg.src = img;	
	
	win = open('', 'foto', 'width=10,height=10,status=no,toolbar=no,menubar=no,scrollbars=no');
	
	win.document.open();
	
	win.document.write('<html><head><title>..:: &ETH;ansKleding.net &copy; << klik op foto om te sluiten >> ::..</title></head>');
	win.document.write('<body bgcolor="#000000" topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 onload="window.resizeTo(10+document.images[\'theimg\'].width,29+ document.images[\'theimg\'].height)">');
	win.document.write('<div align=center><img onclick="self.close();" name=theimg src="'+ img +'">');
	win.document.write('</div></body></html>');
	win.focus();

	win.document.close();
}