
function askDelete( id ){
var titel = document.forms.edit.titel.value;
var txt = "soll der Eintrag\n" + titel + "\nwirklich gelöscht werden?";
conf = confirm ( txt );
if(conf==true){ location.href="?action=delete&id=" + id;}
}

function askDeleteDok( id, name ){
var txt = "soll das Dokument \n" + name + "\n wirklich gelöscht werden?";
conf = confirm ( txt );
if(conf==true){ location.href="?action=delDok&id=" + id;}
}

function askDeleteInfo( id ){
var titel = document.forms.edit.titel.value;
var txt = "soll der Eintrag\n" + titel + "\nwirklich gelöscht werden?";
conf = confirm ( txt );
if(conf==true){ location.href="?action=deleteInf&id=" + id;}
}

function linech( inob){
inob.style.color = "#0000ff";
}


function checkmail(){
var name = document.forms.kontaktbox.name.value;
var email = document.forms.kontaktbox.email.value;
var nachricht = document.forms.kontaktbox.nachricht.value;

if( name=="" || email=="" || nachricht==""){
	alert( "Bitte füllen Sie alle Felder aus. Danke." );
	}
else{document.forms.kontaktbox.submit();}
}

function checknewsl(){
var name = document.forms.programmversandbox.name.value;
var email = document.forms.programmversandbox.email.value;

if( name=="" || email=="" ){
	alert( "Bitte füllen Sie alle Felder korrekt aus. Danke." );
	}
else{document.forms.programmversandbox.submit();}
}
