function senden(modeval, nr){
			
			if (modeval=="del"){
				check = confirm("Hömma Jung: willste diese Nachricht wirklich löschen?");
		        if (check == true) {
				document.form1.mode.value=modeval;
				document.form1.newsid.value=nr;
				document.form1.submit();
			} 
			} else{
				document.form1.mode.value=modeval;
				document.form1.newsid.value=nr;
				document.form1.submit();
				}
		}
				
function sendenb(modeval){
			if (validate()){
				document.form1.mode.value=modeval;
				document.form1.submit();
			}
		}

function validate(){
		var valid=true;
		if (document.form1.name.value==""){
			alert("Hey! What´s your name, kid?");
			valid=false;
		} else if (document.form1.text.value==""){
			alert("Ok - but what´s up with your text - anything to say?");
			valid=false;
		}
		return valid;
	}

