function openPopup(img, desc, width, height) {
if (img && width && height) {
	this.width = width;
	this.height = height;

	var popUp = window.open( ""  ,"","toolbar=no,location=no,directories=no, status=no,scrollbars=no,resizable=no, copyhistory=no,width=" + width + ",height=" + height);

	with (popUp) {
	
	   document.open(); 
	   document.write("<html><head><title>Zusatzinformation</title>\n"); 
	   document.write("<link href=\"./templates/css/hilfe.css\" rel=\"stylesheet\" type=\"text/css\" />\n");
	   document.write("</head>");
	   document.write('<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" scroll=\"no\">\n') 
	   document.write('<h1 id="head_hilfe">'+img+'</h1>\n') 
	   document.write('<p  id="beschreibung">'+desc+'</p>\n') 
	   document.write('<a id="close" href="javascript: window.close();">[ Seite schließen ]</a></body></html>\n')
	   document.close();
	
	}

	}

}