function askDelete(url){
deleteE = confirm('Eintrag löschen?'); 
if (deleteE){
	document.location.href = url;
	}
}

function askDeleteProfil(url){
deleteE = confirm('Profil löschen?'); 
if (deleteE){
	document.location.href = url;
	}
}

function askLogoff(url){
vLogoff = confirm('Jetzt Abmelden?'); 
if (vLogoff){
	document.location.href = url;
	}
}


function setCursor() {
  window.document.forms[0].elements[0].focus();
}
