// usage: <a href="html-or.jpg" onclick="return popup(this, 123 ,456, 'titel', true|false)" title="..." 

var pop = null; 
function popdown() 
{ 
	if (pop && !pop.closed) 
		pop.close(); 
} 

function popup(obj, width, height, full) { 
	var url = (obj.getAttribute) ? obj.getAttribute('href') : obj.href; 
	if (!url) 
	return true; width = (width) ? width : 150; 
	// 150px*150px is the default size 
	height = (height) ? height : 150; 
	if (full) {
		var args = 'width='+width+',height='+height+',resizable,toolbar=no, scrollbars=yes'; 
	} else {
		var args = 'width='+width+',height='+height+',resizable'; 
	}
	//popdown(); 
	pop = window.open(url,'',args);
	return (pop) ? false : false; 
} 
//window.onunload = popdown; window.onfocus = popdown;
