function delElement(id, element) {

	if (confirm("Wollen Sie wirklich "+element+" "+id+" loeschen?")) {

		switch (element) {

			case 'Artikel': element = "article"; elid = "artid"; break;

			case 'Woche': element = "week"; elid = "wid"; break;

			case 'Bild': element = "pic"; elid = "picid"; break;

			case 'Ort': element = "place"; elid = "pid"; break;

			case 'News': element = "news"; elid = "nid"; break;

			case 'Mitarbeiter': element = "empl"; elid = "eid"; break;

			case 'Ermaessigung': element = "erm"; elid = "ermid"; break;

		}

		window.location.href = "delete_"+element+".php?"+elid+"="+id;

	}

}



function put(id, title) {

	if (confirm("Wollen Sie wirklich den Artikel \""+title+"\" in den Warenkorb legen?")) {

		window.location.href = "buy.php?artid="+id;

	}

}

function popupgs (url) {
 fenster = window.open(url, "Gewinnspiel", "width=650,height=480,resizable=no");
 fenster.focus();
 return false;
}