function popup(imagelink,title)
{
	var win;
	win=window.open("","Bildanzeige","width=363,height=313,resizable=yes");
	win.document.open("text/html");
	win.document.write("<title>"+title+"</title>");
	win.document.write("<body marginheight='0' marginwidth='0' leftmargin='0' topmargin='0' style='text-align: center'>");
	win.document.write("<img src='"+imagelink+"'>");
	win.document.write("</body>");
	win.focus();
}
