  function ShowPictFixedSize(name, width, height) {
    WindowParams = "resizable=no,location=no,left=200,top=100,width=" + width + ",height=" + height;
    open(name, "smallwindow", WindowParams);
  }
	
	function ShowDocumentFixedSize(name, width, height) {
    WindowParams = "resizable=yes,scrollbars=yes,location=no,left=200,top=100,width=" + width + ",height=" + height;
    open(name, "smallwindow", WindowParams);
  }
	

