 function OpenWindow(NAME,XSize,YSize)
 {
 var XSize=XSize+10;
 var YSize=YSize+10;
 var FENSTERBREITE = "width=" + XSize;
 var FENSTERHOEHE = "height=" + YSize;       //sdfsd
 picture = window.open("","picture","toolbar=0, location=0,status=0,menubar=0,scrollbars=1,screenX=10, screenY=10, resizable=yes, top=12,left=123,"+FENSTERBREITE+","+FENSTERHOEHE);
 window.picture.close();
 picture = window.open(NAME,"picture","toolbar=0, location=0,status=0,menubar=0,scrollbars=1,screenX=10,screenY=10, resizable=yes, top=12,left=123,"+FENSTERBREITE+","+FENSTERHOEHE);
 window.picture.focus();
 }