<!--
function popup(name,width,height)
{
        var name = "popup";
	var einstellungen;
	einstellungen="width="+ width +",height="+ height +",resizable=no,scrollbars=yes,toolbar=no,status=no,directories=no,menubar=no,location=no";
	window.open('',name,einstellungen);
}

function popup_img(img,width,height)
{
	var name = "popup" + String(Math.round(Math.random() * 1000));
        var fenster = "width=" + width + ",height=" + height + ",resizable=no,scrollbars=no,toolbar=no,status=no,directories=no,menubar=no,location=no";
        w = open("popup.php?img=" +img, name, fenster);
	w.focus();        
}
//-->

