function newWindow(url) {
  window.open(this.href);
  return false;
}

function showImage(url) {
  window1 = window.open(url, "Bild", "width=600px,height=630px,left=300,top=300");
  window1.focus();
}