function laden(){
	var PFAD="http://www.fs-aut.de/fileadmin/templates/download/";
	var DATEI=document.download.datei.value;
	if(document.download.datei.value==""){
		alert("Bitte Dateinamen auswählen!");
		return;
	}
	window.open(PFAD+DATEI, "_blank");
}

