var newwindow;

function downloadBestand(bestand){
	newwindow=window.open(bestand, 'Bestand','height=600,width=750');
	if (window.focus) {newwindow.focus()}
	return false;
}