function showGalerie(folder, image, width, height) {
	image_location = "show_galerie.php?folder=" + folder + "&image=" + image;
	attributes = "width=" + width + ", height=" + height + ", screenX=0, screenY=0, resizable=no, left=0, top=0";
	window.open(image_location, "Galerie", attributes);
}
function showVideo(image, width, height) {
	image_location = "show_video.php?image=" + image;
	attributes = "width=" + width + ", height=" + height + ", screenX=0, screenY=0, resizable=no, left=0, top=0";
	window.open(image_location, "Videoausschnitt", attributes);
}


function showArtikel(artikel, width, height) {
	image_location = "show_artikel.php?artikel=" + artikel;
	attributes = "width=" + width + ", height=" + height + ", screenX=0, screenY=0, resizable=no, left=0, top=0";
	window.open(image_location, "Artikel", attributes);
}

function showSchriftverkehr(image, width, height) {
	image_location = "show_special.php?image=" + image;
	attributes = "width=" + width + ", height=" + height + ", screenX=0, screenY=0, resizable=no, left=0, top=0";
	window.open(image_location, "Schriftverkehr", attributes);
}
