// JavaScript Document
<!-- VarSubWindow  -->
function OpenScreenXY(DURL,Xsize,Ysize) {

  w=window.open("","Window0","height="+Ysize+",width="+Xsize+",screenX=50,left=50,screenY=50,top=50,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=no,status=0,toolbar=0");
    	if(w != null) {
    		if (w.opener == null) w.opener=self;
    		w.location.href=DURL;
                w.focus();
    	}
}

function OpenEditor(DURL) {
  Ysize = 600;
  Xsize = 600;
  w=window.open("","Window0","height="+Ysize+",width="+Xsize+",screenX=50,left=50,screenY=50,top=50,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=no,status=0,toolbar=0");
    	if(w != null) {
    		if (w.opener == null) w.opener=self;
    		w.location.href=DURL;
                w.focus();
    	}
}
