// Methode zum Öffnen einer Admin-Seite
function openAdminBox(param, id) {
	options = "toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=0, width=500, height=500";

	var load = window.open("/content/1.deutsch/admin.php?param='" + param + "&id=" + id + "'", "", options);
}

// Öffnet die gd-Visitenkarte
function popUpWindow() {
	options="toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=0";
	window.open('/content/1.deutsch/visitenkarte.php', 'remote', options + ', width=200, height=180, left=20, top=20, location=0');
}