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