function DynaWin(url, h, w, l, t) {
	poph = + h + 70
	popw = + w + 30
	disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=" + l + ",top=" + t + "");
	content = '<HTML>';
	content += '<TITLE>Pop-up Window</TITLE>';
	content += '</HEAD>';
	content += '<BODY onBlur="self.close()">';
	content += '<P ALIGN="CENTER"><img src="../../images/hps/' + url + '" height="' + h + '" width="' + w + '"></P>';
	content += '<H3 ALIGN="CENTER"><A HREF="#" onClick="self.close()">Fenster schließen</A></H3>';
	content += '</BODY></HTML>';
	disp.document.write(content);
	disp.document.close();
}


/*Musteraufruf
<P><A HREF="#" onClick="DynaWin('m-lu-freshgrey-medical.jpg', '246', '350', '1', '1')" ;>
<img border="0" src="../../images/hps/m-lu-basicgreen-medical-tea.jpg" alt="WEB-Seiten Vorlage " align="right" width="180" height="107"></a>Damit Sie sich einen Eindruck*/
