function checkspenden(formular,lang) {
	var amount = formular.amount.value;

	if (parseInt(amount) < 0 || parseInt(amount) == 0 || isNaN(parseInt(amount)) || /\D/.test(amount)) {
		if (lang == 'en') {
			txt = 'Please provide an amount in Euro';
		} else {
			txt = 'Bitte geben Sie einen Betrag in Euro an';
		}
		formular.amount.value='';
		alert(txt);
		return false; 
	}

	return true; 
}

