//Extra Fenster
function websPopup(url, width, height) {
  window.open(url,"popup","width=" + width + ",height=" + height + ",menubar=no,scrollbars=yes,resizable=yes");
}
//Extra Fenster
function MM_preloadImages() {
	null;
}

//Formular
function Go(form) {
  if (form.selectedIndex == 0)
    null;
  else
    location = form.options[form.selectedIndex].value;
}

function showImage(title, close, url, width, height) {
  width_window = Number(width) + 100;
  height_window = Number(height) + 50;
  var fenster = window.open("image_popup.php?url=" + url + "&close="+ close + "&title="+ title,"popup","status=yes,scrollbars=no,width=" + width_window + ",height=" + height_window);
}