function ScreenShot(Picture){
	url="http://www.unit4-c-logic.be/NEU_/General/ScreenShot.asp?Picture="+Picture;
	img=new Image();
	img.src=Picture;
	width=img.width; height=img.height;
	wndw=window.open(url,"ScreenShot","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width="+width+",height="+height);
	wndw.focus();	
}
