  function OpenWindowsMenu(width,height,html_file){
        j = html_file+"?" + escape("&") + width + escape("&") + height; 
        NewWindow = open(j,"","scrollbars=yes,resizable=yes,toolbar=yes,directories=0,status=0,menubar=yes,width=" + (width+1) + ",height=" + (height+1));
                NewWindow.self.focus();
		}

