<!--
function ArtikelLoeschen(Form)
{
	Meldung = confirm('Soll dieser Artikel (inkl. Bild) wirklich gelöscht werden?');
	
	if(Meldung == true)
	{
		document.forms[Form].submit();
	}
}

function Warenkorbleeren(Form)
{
	Meldung = confirm('Soll der gesamte Warenkorb wirklich gelöscht werden?');
	
	if(Meldung == true)
	{
		document.forms[Form].submit();
	}
}
//-->
