function newProduktWindow(sizeW,sizeH,href,lang,text,imgSrc,zoomiy){
	var winconfig = "width=" + sizeW + ", ";
	winconfig += "height=" + sizeH + ", ";
	winconfig += "left=100,top=200,resizable=yes";
	var address = href + "?text=" + text + "&imgSrc=" + imgSrc + "&file=" + zoomiy + "&width=" + sizeW + "&L=" +lang ;
	//alert(winconfig);
	  MeinFenster = window.open(address, "Zoom", winconfig);
  MeinFenster.focus();

}
