// Encoding: UTF-8 (without BOM) (auto-detect: °°°°°)

function openPopup(url, name, width, height)
{
	var win = window.open(url, name, "width=" + width + ", height=" + height + ", resizable=yes, dependent=yes, scrollbars=yes");
	if (!win)
	{
		alert("Bitte deaktivieren Sie Ihren Popup-Blocker, um das Fenster anzuzeigen.");
	}
	else
	{
		win.focus();
		DOMKeyEvents.add(win, "Escape", win.close);
	}
}

function openPopupLink(link, name, width, height)
{
	openPopup(link.href, name, width, height);
	return false;
}

function popup_foto(file, w, h)
{
	fenster = window.open("foto.php?file=" + file + "&w=" + w + "&h=" + h, "Foto", "scrolling=no, status=no, width=" + w + ", height=" + h + ", menubar=no, locationbar=no, resizable=no, hotkeys=no");
}
