// JavaScript Document

function deleteImg(com,comid,file,sublink)
{

	var adress = "?item=com&action=deleteimage&com="+com+"&comid="+comid+"&sub="+sublink+"&file="+file;
	var answer = confirm('Wollen Sie dieses Element wirklich entfernen?');
	if (answer)
		window.location = adress;
}

function deleteCom(com,comid,aid)
{
	if (!parseInt(aid))
		var adress = "?item=com&action=delete&com="+com+"&comid="+comid;
	else
		var adress = "?item=artikel&id="+aid+"&action=delete&com="+com+"&comid="+comid;
	var answer = confirm('Wollen Sie dieses Element wirklich entfernen?');
	if (answer)
		window.location = adress;
}

function deleteElement(datei)
{
	var adress = "?item=artikel&action=delete&id=" + datei;
	var answer = confirm('Wollen Sie diesen Artikel wirklich entfernen?');
	if (answer)
		window.location = adress;
}

