function FensterOeffnen (Adresse,breite,hoehe) {    
	Fenster1 = window.open(Adresse, '_blanc', 'width='+breite+',height='+hoehe+',left=100,top=200');
	Fenster1.focus();
}

function question_yes_no(text) {
    return window.confirm(text);	
}


