
//<![CDATA[    

function openwindow(url, name, title, width, height) {
  var params = 'scrollbars=yes,resizable=yes,dependent=yes';
  if (!width) width = 800;
  if (!height) height = 600;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open(url, name, params);
  win.focus();
  return false;
}

function openimage(image, title, width, height) {
  var params = 'menubar=yes,scrollbars=no,resizable=yes,dependent=yes,locationbar=no,statusbar=no';
  if (!width) width = 300;
  if (!height) height = 200;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open('image.html?image_='+image+'&amp;title_='+title, 'image', params);
  win.focus();
  return false;
}

function openmedia(media, title, width, height, type) {
  var params = 'menubar=yes,scrollbars=no,resizable=yes,dependent=yes,locationbar=no,statusbar=no';
  if (!width) width = 300;
  if (!height) height = 200;
  params = 'width='+width+',height='+height+','+params;
  var win = window.open('media.html?media_='+media+'&amp;title_='+title+'&amp;width_='+width+'&amp;height_='+height+'&amp;type_='+type, 'media', params);
  win.focus();
  return false;
}

$(function() {
	$('a.lightbox').lightBox({
		imageLoading  : 'javascript/misc/lightbox-loading.gif',
		imageBtnPrev  : 'javascript/misc/lightbox-prev.gif',
		imageBtnNext  : 'javascript/misc/lightbox-next.gif',
		imageBtnClose : 'javascript/misc/lightbox-close.gif',
		imageBlank    : 'javascript/misc/lightbox-blank.gif',
		txtImage      : 'Bild',
		txtOf         : 'von'
	});
});

//]]>
