// öffnet fenster zum hochladen der bilder 
function openImageWindow(id,topic,content,langDependent,templateId,windowWidth,windowHeight,imageWidth, imageHeight, maxWidth, maxHeight, border, borderWidth, borderColor, additionalPath){

 adWin = window.open(cxbase+"modules/image/imageUpload.php" +
                                                     "?id=" + id +
                                                  "&topic=" + topic + 
                                                "&content=" + content + 
                                          "&langDependent=" + langDependent + 
                                             "&templateId=" + templateId +
                                            "&imageHeight=" + imageHeight +
                                             "&imageWidth=" + imageWidth +
                                               "&maxWidth=" + maxWidth +
                                              "&maxHeight=" + maxHeight +
                                                 "&border=" + border +
                                            "&borderWidth=" + borderWidth +
                                            "&borderColor=" + escape(borderColor) +
                                         "&additionalPath=" + escape(additionalPath),
                     "adminWin",
                     "width="+ windowWidth +",height="+ windowHeight +",screenX=0,screenY=0,dependent=yes,scrollbars,resizable=yes");
}

