function openImage(imageName,imageWidth,imageHeight,posLeft,posTop) {  // v4.01
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	if(newWindow)
	{	
		newWindow.document.open();
		newWindow.document.write('<html><title>Ab jetzt Confixx 3 bei allen Paketen verfügbar!!!</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
		newWindow.document.write('<div style="text-align:center"><img src=\"'+imageName+'\" onclick=\"javascript:window.close();\" alt=\"zum Schliesen ins Bild klicken...\" title=\"zum Schliesen ins Bild klicken...\"></div>');
		newWindow.document.write('</body></html>');
		newWindow.document.close();
		newWindow.focus();
	}
}
