function ImageOpen (url,breite,hoehe,options){
	Fenster = window.open(url,"Zweitfenster","Width="+breite+",Height="+hoehe+","+options);
	Fenster.innerWidth = breite;
	Fenster.innerHeight = hoehe;
	Fenster.focus();
}
