// JavaScript Document

function meldung(meldung, adresse)
{
	if(confirm(meldung) == true)
		location.replace(adresse);
		//return ziel;
	else
		location.replace(this.href());
		//return this.href();
}
