// <a href="xy.htm oder xy.jpg" onclick="popup(this,123,456)" title="..."
// or
// <a href="xy.htm oder xy.jpg" onclick="popup(this)" title="..."

var pop = null;

function popdown() {
  if (pop && !pop.closed) pop.close();
}

function popup(obj,w,h,scroll) {
  var url = (obj.getAttribute) ? obj.getAttribute('href') : obj.href;
  if (!url) return true;
  w = (w) ? w +=20 : 600;  // 600px*600px Standardgröße
  h = (h) ? h +=25 : 600;
		if(scroll)
    {
  	  var args = 'width='+w+',height='+h+',noresizable,left=40,top=60,scrollbars';
		}else
    {
			var args = 'width='+w+',height='+h+',noresizable,left=40,top=60';
		}
  popdown();
  pop = window.open(url,'',args);
  return (pop) ? false : true;
}

window.onunload = popdown;
window.onfocus = popdown;

