
    function ImageWindow(File,Width,Height)
    {

	if (Width) {} else {
		Width = 750;
	}
	if (Height) {} else {
		Height = 584;
	}

	Detailansicht = window.open(File,'_blank','toolbar=0'+',scrollbars=0,width='+Width+',height='+Height+',left=10,top=10,menubar=0,location=0,status=0,resizable=0,dependent=0,')
    Detailansicht.focus();

    }

    //-->

