var tmpPath = null;
var tmpPictures = null;
function picturePreview(path, pictures, width, height) {
    tmpPatch = path;
    tmpPictures = pictures;
    var popUp = window.open('about:blank','thePicture','width=517,height=353,status=0,menubar=0');
}

function showPicture(index) {
    if (!tmpPictures[index])
        return; // image doesn't exists

    document.writeln("<html>");
    document.writeln("<head>");
    document.writeln("<title>Karnevalsgesellschaft Attendorn e.V. - &quot;Die Kattfiller&quot;</title>");
    document.writeln("</head>");
    document.writeln("<body>");
    document.writeln("<img border=0 id=\"picture\">");
    document.writeln("</body>");
    document.writeln("</html>");

    var img = new Image();
    img.src = path+"/"+tmpPictures[index];
    document.getElemenById("picture").src=img.src;
}

function showImage(img, width, height) {
   var popup = window.open('about:blank','thePicture','width='+width+',height='+height+',status=0,menubar=0');
   popup.document.writeln("<html>");
   popup.document.writeln("<head>");
   popup.document.writeln("<title>Karnevalsgesellschaft Attendorn e.V. - &quot;Die Kattfiller&quot;</title>");
   popup.document.writeln("</head>");
   popup.document.writeln("<body>");
   popup.document.writeln("<img border=0 id=\"picture\" src=\"" + img + "\" alt=\"Grafik wird geladen ...\" title=\"Grafik wird geladen ...\">");
   popup.document.writeln("</body>");
   popup.document.writeln("</html>");
}



