// JavaScript Document

// function für galerie - großansicht

function show_image(url, width, height) { 
  window.open(url, 'popup', 'width=' + width + ',height=' + height); 
}

function show_image2(url, width, height) { 
  window.open(url, 'width=' + width + ',height=' + height); 
}


