function Speichern(n,w,e)
{
	 var a = new Date();
	 a = new Date(a.getTime() +e);
	 document.cookie = n+'='+w+'; expires='+a.toGMTString()+';';
	 
	 alert('Das Objekt wurde in Ihrem Katalog gespeichert!');
}

function Loeschen(n)
{
	 document.cookie = n+'=; expires=Thu, 01-Jan-70 00:00:01 GMT;';
	 window.location.href = 'http://www.horumersiel.de/index.php?article_id=246&clang=0';
}