<!--
function popupWindow(mypage,w,h){
	myname = mypage;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition;
	win = window.open('http://www.lnm.nl/v02/popup/index.php?img='+mypage,myname,settings);
}
//-->