function popImg(bild,w,h,text) {
	
	if(text == undefined){
		text = "";
	}
		var win = null;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable,location=no';	
	win = window.open("","",settings);
	win.document.write('<html><head><title>Moeding</title><link href="css/format.css" rel="stylesheet" type="text/css"></head><body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle" class="pop"><img src="'+bild+'"></td></tr></table></body></html>');
	if(win.window.focus){
		win.window.focus();
	}
} 
