function popwin(url, h, w, title) {
	poph = + h + 15
	popw = + w + 15
	disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=0,top=0");
	content = '<HTML>';
	content += '<TITLE>'+title+'</TITLE>';
	content += '</HEAD>';
	content += '<BODY leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" BACKGROUND="yourfile" onBlur="self.close()">';
	content += '<P onclick="self.close()"><img alt="Bitte anklicken zum schliessen." src="' + url + '" height="' + h + '" width="' + w + '"></P>';
	content += '</BODY></HTML>';
	disp.document.write(content);
	disp.document.close();
}
