function del()
{
	return confirm("Wirklich Loeschen?");
}


function showGallery(galleryId) {
	window.open("http://localhost/gallery/gallery.php?gid="+galleryId,"Gallery","width=800,height=670,menubar=no,location=no,scrollbars=yes,status=no,toolbar=no,dependent=yes,resizable=yes");
}

function showGalleryPic(galleryId, pictureNr) {
        window.open("http://localhost/gallery/gallery.php?gid="+galleryId+"&nr="+pictureNr,"Gallery","width=800,height=670,menubar=no,location=no,scrollbars=yes,status=no,toolbar=no,dependent=yes,resizable=yes");
}


function previewGallery(galleryId) {
	window.open("http://localhost/gallery/gallery.php?gid="+galleryId,"Gallery","width=800,height=600,menubar=no,location=no,scrollbars=yes,status=no,toolbar=no,dependent=yes,resizable=yes");
}


function openWindow(url, width, height) {
        window.open(url,"Zuender","width="+width+",height="+height+",menubar=no,location=no,scrollbars=yes,status=no,toolbar=no,dependent=yes,resizable=yes");
}

