
function showImage(imgsrc, title, alt, width, height, path) {
	win = window.open("", "image", "width="+(width+40)+",height="+(height+50)+",status=0,menubar=0,scrollbars=0,resizable=1");
	win.document.open("text/html", "replace");
  	win.document.write("<HTML>\n\n<HEAD>\n<TITLE>"+title+"</TITLE>\n<LINK HREF=\"" + path + "style/popup.css\" REL=stylesheet TYPE=text/css>\n</HEAD></HEAD>\n\n<BODY TOPMARGIN=5>\n\n<CENTER>\n<IMG NAME=picture SRC="+imgsrc+" alt=\""+alt+"\" BORDER=1>\n<P><A HREF=\"javascript:window.close()\">Sluiten</A></BODY></HTML>");
  	win.document.close(); 	
}



