function sureDelete(link) {
	if (confirm('Do you really want to delete this entry?')) {
		location.href = link;
	}
}

//Pop-Up Fenster
function pop_up(link) {
	Fenster = window.open(link, "", "width=590, height=250, left=30, top=30, resizable=yes, scrollbars=yes");
	Fenster.focus();
}


//Datum setzen (Kalender Iframe -> Event Details)
function setEventDate(tag, monat, jahr) {
	$('tourdate_day').setProperty('value', tag);
	$('tourdate_month').setProperty('value', monat);
	$('tourdate_year').setProperty('value', jahr);

	var tourdateEffect = new Fx.Style($('tourdate'), 'opacity', {duration:1000, wait:true});
	tourdateEffect.hide();
	tourdateEffect.start(1);
}