Content area

Abstract

This article details the development of an experimental XML-based online library catalog. The emerging technology of XML, and its early implementation in Microsoft Internet Explorer 5, allowed for the development of an application employing the client-side processing of XML with JavaScript. But slow implementation of XML by other browser vendors, and a tendency towards the slow adoption of the newest browser versions by users, demanded an application employing server-side processing of the XML. Now in its third version, XMLCat demonstrates the viability of this approach, and points to possibilities for its future development.

Full text

Turn on search term navigation
 
Headnote

Keywords

Headnote

Catalogues, Libraries, Internet, Computer languages,

Client-server computing

Headnote

Abstract

Headnote

This article details the development of an experimental XML-- based online library catalog. The emerging technology of XML, and its early implementation in Microsoft Internet Explorer 5, allowed for the development of an application employing the client-side processing of XML with JavaScript. But slow implementation of XML by other browser vendors, and a tendency towards the slow adoption of the newest browser versions by users, demanded an application employing server-side processing of the XML. Now in its third version, XMLCat demonstrates the viability of this approach, and points to possibilities for its future development.

The genesis of the XMLCat Library Catalog began in the Spring of 1999 when I was Librarian at the Middle East Institute in Washington, DC. I was using Inmagic DB/ Textworks to maintain the library's online catalog and wanted to place it on the Web, both as a convenience to patrons, and as a way to cut down on the number of phone inquiries. Although Inmagic has very good software (WebPublisher) for placing databases (or textbases as they call them) on the Web, the more than $5,000 price tag was beyond the meager budget of my little library. And as I discovered on the Inmagic listserv, there were plenty of smaller libraries in the same situation as mine.

I wanted, therefore, to come up with a low-- cost solution (or no-cost, other than my time), that would not require a great deal of programming expertise, and what I knew of the emerging XML standard seemed like it might provide the answer. I had seen from my experience encoding texts in TEI-Lite (an SGML application), and using Softquad's Panorama software, an SGML publisher/ viewer, that encoding text in this fashion makes them highly searchable. I had observed that documents marked up in SGML - and by extension XML, a simplified version of SGML for the Web - with its highly hierarchical data structures, were analogous to relational databases, although seeming to contain far richer possibilities. All that were required to mine the wealth of data contained in these documents were adequate software tools.

The development of XMI.Cat: client-side version

In the Spring of 1999, Microsoft had just released its Internet Explorer version 5.0, the first XML-aware Web browser. With this release, containing both an XML parser and an XSL processor, the possibility of not only designing an XML-encoded library catalog, but of making it available to the public on the Web, had arrived. But I did not have the skills necessary for achieving this until the appearance, soon thereafter, of what was probably the first book on using XML with IE5, published by Microsoft Press. In XML In Action (Pardi, 1999), I gained an understanding of how to use something called the Document Object Model (DOM) - a representation, contained in memory, of the XML's tree-- structure - to walk through the document hierarchy, searching for data within specific XML elements, analogous to fields in a database. This technique seemed tailor-made for library applications. Since it relied heavily on the use of JavaScript for processing the XML, I then picked up a copy of Danny Goodman's JavaScript Bible (1998) to deepen my knowledge of this scripting language, and I was ready to write my application. The only major drawback to this approach, that I could see, was that it required the user to have IE5 installed on their machine, compounded by the fact that Netscape owned more than half of the browser market, and by the notorious slowness of users in adopting the latest versions of browsers. But if that was the price of being on the "cutting edge," so be it, and XML promised, in due course, to become the new standard for encoding documents for the Web. Universal browser implementation of XML, it seemed, couldn't be far off.

First I tackled the creation of the XML. All of my bibliographic records were contained in DB/ Textworks, so it just seemed a matter of outputting them from the database as XML. I accomplished this using the built-in report writing feature of the Inmagic software. For simplicity, I wrote a DTD (Document Type Definition) that replicated the structure and field names of my database (Figure 1), and constructed a form to output XML conforming to this DTD. After a bit of experimentation, I was able to export all of the records in the database (or any subset of these records) in well-formed, valid XML. The only problem here was that the extended ASCII (or special) characters were passed along to the XML intact. This meant they would have to be converted to character entities before the XML could be parsed by IE5 or any XML parser. I had to avoid converting the angle brackets ("<" and ">") since these are used for the tags in XML. To complicate matters, what if the bibliographic records themselves contained angle brackets? These obviously need to be converted to character entities, otherwise they were bound to cause problems in displaying and processing the XML. To get around these problems, I decided to convert all angle brackets within the database records themselves, using the global search and replace function of DB/Textworks. After exporting the XML, I ran it through a utility called ansi2ent (written in the Omnimark language - requires free Omnimark software), which I modified to omit conversion of angle brackets. I have since written an ANSI to entity convert in the Python programming language which gives one the options of converting or leaving angle brackets. A self-installing version is available at http:// elementarts.com/ansicon.html

My first version of XMLCat (Figure 2), available at http://www.elementarts.com/ xmlcat/search.html took advantage of IE5's XML implementation in order to build an entirely client-side application, using JavaScript to process the XML. A notice at the top of the search screen informs the would-be user: "You will need Internet Explorer 5 to use this online catalog." As mentioned previously, the disadvantage of this approach is browser dependency, something I felt would be remedied in due course as all major browsers

View Image - Figure 1

Figure 1

began to implement XML. However, when compared to library databases employing CGI and other server-side technologies, this disadvantage was offset by such features as a higher retrieval rate, the ability to instantly manipulate and reformat data, and the reduction of the load on the server. As I soon discovered, another down-side was the time required to download the XML file to the browser. The earliest books on designing XML Applications all used client-side JavaScript to process XML and none warned of this drawback. Their examples worked nicely, but used record sets that were too small for any meaningful bibliographic purpose. My first XML file consisted of a relatively modest 734 records, and at 750K, took nearly two minutes to download with a 28.8K connection, or about a minute with a 56K connection. To alert the user, the following caveat appeared at the top of the search screen - "Please wait for XMLCAT to load (about 2 minutes) before searching." Another message - "Please wait while the catalog loads!" scrolls across the status bar, ending in the words "Catalog loaded" when loading into memory is complete. But I could see from the beginning that this not insignificant delay had the potential for trying the patience of the user.

The search screen attempts to incorporate Boolean and field-specific searching in a very simple interface, based on two sets of radio buttons. In the first set, the user has a choice between "Any word," "All words," and "Exact Phrase" (corresponding to the Boolean "or", Boolean "and," and no Boolean operator); the second set, "Title," "Author," "Subject," and "All fields," which searches the text of the entire record.

As mentioned earlier, once the XML is loaded into memory, searches are completed very quickly (in about two or three seconds) since the search is performed entirely in memory, without any need to access either the server or the local hard drive. Search results, in a summarized record format, are displayed in a separate window, with the number of matching records displayed in the status bar (Figure 3). Each record is followed by a button labeled "Full Record." When this is clicked, the full bibliographic record is displayed in a separate window, in a second or less (Figure 3). Both the formatting and the display in separate windows of both search results and full records, were designed to approximate the appearance and functionality of Inmagic DB/Textworks, the initial catalyst for the project.

View Image - Figure 2

Figure 2

The underlying structure of the XML is what makes all this possible. Each bibliographic record is enclosed within a element, and then each field within the record is enclosed within an element whose name corresponds to the field name:

View Image -

View Image -

The procedures then used to search and display the XML-encoded bibliographic records are fairly simple. Once the XML is loaded into memory, a script is executed which uses the Document Object Model, to "walk" through the elements of the XML, searching for a sub-element matching the field selected, and then looking within that element for text matching the search terms. When full record searching is selected, a simplified routine is used wherein XMLCat walks through the elements, looking for a match contained in the text of all sub-elements. The type of search selected ("any word," "all words," or "exact phrase") is executed through the use of the "regular expression" syntax contained in JavaScript. The contents of each matching record is then tagged as HTML and formatted on the fly, and concatenated to some containing HTML tags and the other tagged records for display in the browser. As this is being done, the total number of hits is being counted for display in the browser's status bar. A similar procedure is used to select and display the contents of the single element corresponding to the selected record. XMLCat walks through the elements looking for a match for the "id" attribute. Upon finding a match, it walks through the various subelements of the record, and creates the HTML, including field labels and other added text, on the fly through a process of concatenation.

The development of XMI.Cat: server-side version

The next challenge facing me in the evolution of XMLCAT was the development of a browser-- independent version (http://www.elementarts. com/xmlcat/search.asp). The most

View Image - Figure 3

Figure 3

straightforward way was to use my JavaScript code server-side with Active Server Pages (ASP). Although requiring a Microsoft platform on the server, all of the processing of the XML is done there, transforming the XML into HTML. Then the HTML, usable by any browser, on any platform, is served up to the client. And although VBScript is the native script, JavaScript, or Microsoft's implementation of JavaScript, JScript, works equally well. This required only a fairly slight rewriting of the old code and minimal addition of new code to work. Also using capabilities inherent in ASP, I was able to add a simple entry box for user comments (some of which have proved really useful in the re-design process), and counters for total and current users (Figure 4).

The payoff was immediate: although the search times were lengthened somewhat to 10-20 seconds, the one to two minute wait for the XML to load into memory was eliminated. Happily, the new version permitted catalog access from any browser - Internet Explorer, Netscape, Opera - any version, and on any platform. Equally importantly, I was able to increase the number of bibliographic records from a mere 750 to more than 2,000, and still have acceptable performance. At 4,600 records, however, search time increased to about 30 seconds to complete, although in a typical search, results would begin displaying in about eight to ten seconds. The application was now designed to display partial results as it found matching records, rather than all at once, at the completion of the search. The idea here was to avoid having users stare at a blank page for 30 seconds or more. One consequence of this was that the record count had to appear at the bottom of the page, when the search was completed (Figure 5). Perhaps even less satisfactory than the 30-second search time was the additional ten or 15 seconds required to retrieve and display the full record from the server. So the second version of XMLCat, although a partial success, clearly still needed more development.

In the third version of XMLCat (available at http://www.elementarts.com/xmlcat/ search2.asp), a number of refinements were added, both to the search engine and to the interface. In order to speed up the search process, XMLCat first selects all elements corresponding to the search field, using the getElementsByTagName() method of the DOM to obtain references to, for example, only the elements, and then iterating through those looking for a match for the search terms, (as opposed to having to iterate through each sub-element in each <record> element, looking for elements that match the field selected). This was accomplished by a more hierarchical restructuring of the XML, so that each searchable field now corresponded to a single element, each entry in that field then being placed within sub-elements. The sample record shown above now looked like this: <a name="39"></a><div class="document_view_image"><img src="https://media.proquest.com/media/hms/ORIG/25/VLEEE?_a=ChgyMDI2MDEwMjEyMDMyODgyODoyMzAxOTUSBzE0MTM1MzcaCk9ORV9TRUFSQ0giDjIxNi43My4yMTYuMjE2KgUzNjc0NzIJMjMzNjA0MTc3OgtJbmxpbmVJbWFnZUIBMFIGT25saW5lWgNJTEliBFRIVU1qCjIwMDAvMDEvMDFyCjIwMDAvMTIvMzF6AIIBPFAtMTAwMDAwMS0yMDg2MTEtQ1VTVE9NRVItMTAwMDAzNDgvMTAwMDAyNTUvMTAwMDAwMDgtNjY5MzA5NZIBBk9ubGluZcoBDlNlYXJjaFJldHJpZXZl0gESU2Nob2xhcmx5IEpvdXJuYWxzmgIHUHJlUGFpZKoCLE9TOkVNUy1UZXh0UGx1c0dyYXBoaWNzQ29udGFpbmVyLXByZXBhcmVCb2R5ygIHRmVhdHVyZeICAPICAPoCAU6CAwNXZWKKAxxDSUQ6MjAyNjAxMDIxMjAzMjAzNDc6NzI5NTI2&_s=gxcCXWWSoRdgE%2F%2FxZM0NV4m3sOU%3D" class="textPlusGraphicsImageClass active" alt="View Image - " title="View Image - " data-original="https://media.proquest.com/media/hms/ORIG/26/VLEEE?_a=ChgyMDI2MDEwMjEyMDMyODgyODoyMzAxOTUSBzE0MTM1MzcaCk9ORV9TRUFSQ0giDjIxNi43My4yMTYuMjE2KgUzNjc0NzIJMjMzNjA0MTc3OgtJbmxpbmVJbWFnZUIBMFIGT25saW5lWgNJTEliBFRIVU1qCjIwMDAvMDEvMDFyCjIwMDAvMTIvMzF6AIIBPFAtMTAwMDAwMS0yMDg2MTEtQ1VTVE9NRVItMTAwMDAzNDgvMTAwMDAyNTUvMTAwMDAwMDgtNjY5MzA5NZIBBk9ubGluZcoBDlNlYXJjaFJldHJpZXZl0gESU2Nob2xhcmx5IEpvdXJuYWxzmgIHUHJlUGFpZKoCLE9TOkVNUy1UZXh0UGx1c0dyYXBoaWNzQ29udGFpbmVyLXByZXBhcmVCb2R5ygIHRmVhdHVyZeICAPICAPoCAU6CAwNXZWKKAxxDSUQ6MjAyNjAxMDIxMjAzMjAzNDc6NzI5NTI2&_s=aXki%2BuO%2FbT8IJGhbmkYWzFdeJVA%3D"><div class="small document_view_caption"><p></p></div></div> </p> <p> Other schemes for this restructuring could have been used. For example, the <author> element could have contained <authorname> sub-- elements, a <notes> element could have been created with <note> sub-elements, etc. The use of the generic <entry> sub-elements was made in order to simplify the new DTD (Figure 6), and more importantly, to be able to simplify the JavaScript code necessary for processing the XML, as well as the XSLT code for transforming it into HTML and displaying it. This clearly illustrates the important design principle of structuring XML documents for the applications that will use them. </p> <div> <a name="37"></a><div class="document_view_image"><img src="https://media.proquest.com/media/hms/ORIG/10/VLEEE?_a=ChgyMDI2MDEwMjEyMDMyODgyODoyMzAxOTUSBzE0MTM1MzcaCk9ORV9TRUFSQ0giDjIxNi43My4yMTYuMjE2KgUzNjc0NzIJMjMzNjA0MTc3OgtJbmxpbmVJbWFnZUIBMFIGT25saW5lWgNJTEliBFRIVU1qCjIwMDAvMDEvMDFyCjIwMDAvMTIvMzF6AIIBPFAtMTAwMDAwMS0yMDg2MTEtQ1VTVE9NRVItMTAwMDAzNDgvMTAwMDAyNTUvMTAwMDAwMDgtNjY5MzA5NZIBBk9ubGluZcoBDlNlYXJjaFJldHJpZXZl0gESU2Nob2xhcmx5IEpvdXJuYWxzmgIHUHJlUGFpZKoCLE9TOkVNUy1UZXh0UGx1c0dyYXBoaWNzQ29udGFpbmVyLXByZXBhcmVCb2R5ygIHRmVhdHVyZeICAPICAPoCAU6CAwNXZWKKAxxDSUQ6MjAyNjAxMDIxMjAzMjAzNDc6NzI5NTI2&_s=kiWpoAcec%2BHyV6wOMlMoWzTBeWc%3D" class="textPlusGraphicsImageClass active" alt="View Image - Figure 4 Figure 5 " title="View Image - Figure 4 Figure 5 " data-original="https://media.proquest.com/media/hms/ORIG/11/VLEEE?_a=ChgyMDI2MDEwMjEyMDMyODgyODoyMzAxOTUSBzE0MTM1MzcaCk9ORV9TRUFSQ0giDjIxNi43My4yMTYuMjE2KgUzNjc0NzIJMjMzNjA0MTc3OgtJbmxpbmVJbWFnZUIBMFIGT25saW5lWgNJTEliBFRIVU1qCjIwMDAvMDEvMDFyCjIwMDAvMTIvMzF6AIIBPFAtMTAwMDAwMS0yMDg2MTEtQ1VTVE9NRVItMTAwMDAzNDgvMTAwMDAyNTUvMTAwMDAwMDgtNjY5MzA5NZIBBk9ubGluZcoBDlNlYXJjaFJldHJpZXZl0gESU2Nob2xhcmx5IEpvdXJuYWxzmgIHUHJlUGFpZKoCLE9TOkVNUy1UZXh0UGx1c0dyYXBoaWNzQ29udGFpbmVyLXByZXBhcmVCb2R5ygIHRmVhdHVyZeICAPICAPoCAU6CAwNXZWKKAxxDSUQ6MjAyNjAxMDIxMjAzMjAzNDc6NzI5NTI2&_s=hYD2lzvBv4hT7zj6k5Wz8cfBkao%3D"><div class="small document_view_caption"><p>Figure 4 Figure 5 </p></div></div> </div> <p> A major departure in methodology was to write the selected XML to a file and then use XSLT (XML Style Sheet Transformations -- the transformation part of XSL) to transform the XML into HTML as opposed to creating it on the fly with JavaScript, as I had done in the previous version. Most importantly, this greatly speeds up retrieval of the full record since it now has to locate it in a much smaller subset of the original XML file. Also, by first writing the search results to a file, there is a much greater capacity to instantly re-sort and otherwise reformat the XML. </p> <p> Improvements to the interface include: display of search results and record details in the same browser window as the initial search screen (users found the separate windows to be confusing), enhanced navigation between pages, display of search criteria in the search results screen (Figure 7), and display of the record unique id in the navigation bar of the record display (Figure 8). The record count could now also be brought up to the top of the page (Figure 7). </p> <p> The future of XMLCat </p> <p> With three distinct versions, and continuous minor improvements, XMLCat has gone well beyond its roots in Inmagic DB/Textworks. Several methods now exist for converting MARC records directly into XML, and it is equally possible to generate XML from a variety of other databases. I feel that once all browsers are fully XML and XSLT compliant, the ideal configuration for XMLCat and other XML-based library catalogs will be in a marriage of the two approaches, server-side and client-side, outlined above. Specifically, the initial searching and processing of the XML is more efficient on the server, while the reformatting, sorting, and other manipulations of the bibliographic information, is more efficient and faster on the client. </p> <div> <a name="43"></a><div class="document_view_image"><img src="https://media.proquest.com/media/hms/ORIG/6/VLEEE?_a=ChgyMDI2MDEwMjEyMDMyODgyODoyMzAxOTUSBzE0MTM1MzcaCk9ORV9TRUFSQ0giDjIxNi43My4yMTYuMjE2KgUzNjc0NzIJMjMzNjA0MTc3OgtJbmxpbmVJbWFnZUIBMFIGT25saW5lWgNJTEliBFRIVU1qCjIwMDAvMDEvMDFyCjIwMDAvMTIvMzF6AIIBPFAtMTAwMDAwMS0yMDg2MTEtQ1VTVE9NRVItMTAwMDAzNDgvMTAwMDAyNTUvMTAwMDAwMDgtNjY5MzA5NZIBBk9ubGluZcoBDlNlYXJjaFJldHJpZXZl0gESU2Nob2xhcmx5IEpvdXJuYWxzmgIHUHJlUGFpZKoCLE9TOkVNUy1UZXh0UGx1c0dyYXBoaWNzQ29udGFpbmVyLXByZXBhcmVCb2R5ygIHRmVhdHVyZeICAPICAPoCAU6CAwNXZWKKAxxDSUQ6MjAyNjAxMDIxMjAzMjAzNDc6NzI5NTI2&_s=eVAZkUTB6EkoGfyZBE3LeZ0NTSM%3D" class="textPlusGraphicsImageClass active" alt="View Image - Figure 6 " title="View Image - Figure 6 " data-original="https://media.proquest.com/media/hms/ORIG/7/VLEEE?_a=ChgyMDI2MDEwMjEyMDMyODgyODoyMzAxOTUSBzE0MTM1MzcaCk9ORV9TRUFSQ0giDjIxNi43My4yMTYuMjE2KgUzNjc0NzIJMjMzNjA0MTc3OgtJbmxpbmVJbWFnZUIBMFIGT25saW5lWgNJTEliBFRIVU1qCjIwMDAvMDEvMDFyCjIwMDAvMTIvMzF6AIIBPFAtMTAwMDAwMS0yMDg2MTEtQ1VTVE9NRVItMTAwMDAzNDgvMTAwMDAyNTUvMTAwMDAwMDgtNjY5MzA5NZIBBk9ubGluZcoBDlNlYXJjaFJldHJpZXZl0gESU2Nob2xhcmx5IEpvdXJuYWxzmgIHUHJlUGFpZKoCLE9TOkVNUy1UZXh0UGx1c0dyYXBoaWNzQ29udGFpbmVyLXByZXBhcmVCb2R5ygIHRmVhdHVyZeICAPICAPoCAU6CAwNXZWKKAxxDSUQ6MjAyNjAxMDIxMjAzMjAzNDc6NzI5NTI2&_s=h1%2Fhit7eVat7kuO%2Bn06MsRbJ5Lc%3D"><div class="small document_view_caption"><p>Figure 6 </p></div></div> </div> <div> <a name="48"></a><div class="document_view_image"><img src="https://media.proquest.com/media/hms/ORIG/2/VLEEE?_a=ChgyMDI2MDEwMjEyMDMyODgyODoyMzAxOTUSBzE0MTM1MzcaCk9ORV9TRUFSQ0giDjIxNi43My4yMTYuMjE2KgUzNjc0NzIJMjMzNjA0MTc3OgtJbmxpbmVJbWFnZUIBMFIGT25saW5lWgNJTEliBFRIVU1qCjIwMDAvMDEvMDFyCjIwMDAvMTIvMzF6AIIBPFAtMTAwMDAwMS0yMDg2MTEtQ1VTVE9NRVItMTAwMDAzNDgvMTAwMDAyNTUvMTAwMDAwMDgtNjY5MzA5NZIBBk9ubGluZcoBDlNlYXJjaFJldHJpZXZl0gESU2Nob2xhcmx5IEpvdXJuYWxzmgIHUHJlUGFpZKoCLE9TOkVNUy1UZXh0UGx1c0dyYXBoaWNzQ29udGFpbmVyLXByZXBhcmVCb2R5ygIHRmVhdHVyZeICAPICAPoCAU6CAwNXZWKKAxxDSUQ6MjAyNjAxMDIxMjAzMjAzNDc6NzI5NTI2&_s=dZE5z4EvlToU57FpF6eyDcdFFgk%3D" class="textPlusGraphicsImageClass active" alt="View Image - Figure 7 Figure 8 " title="View Image - Figure 7 Figure 8 " data-original="https://media.proquest.com/media/hms/ORIG/3/VLEEE?_a=ChgyMDI2MDEwMjEyMDMyODgyODoyMzAxOTUSBzE0MTM1MzcaCk9ORV9TRUFSQ0giDjIxNi43My4yMTYuMjE2KgUzNjc0NzIJMjMzNjA0MTc3OgtJbmxpbmVJbWFnZUIBMFIGT25saW5lWgNJTEliBFRIVU1qCjIwMDAvMDEvMDFyCjIwMDAvMTIvMzF6AIIBPFAtMTAwMDAwMS0yMDg2MTEtQ1VTVE9NRVItMTAwMDAzNDgvMTAwMDAyNTUvMTAwMDAwMDgtNjY5MzA5NZIBBk9ubGluZcoBDlNlYXJjaFJldHJpZXZl0gESU2Nob2xhcmx5IEpvdXJuYWxzmgIHUHJlUGFpZKoCLE9TOkVNUy1UZXh0UGx1c0dyYXBoaWNzQ29udGFpbmVyLXByZXBhcmVCb2R5ygIHRmVhdHVyZeICAPICAPoCAU6CAwNXZWKKAxxDSUQ6MjAyNjAxMDIxMjAzMjAzNDc6NzI5NTI2&_s=%2FIk7ZV1geisLDuHtzBVreZrwjJU%3D"><div class="small document_view_caption"><p>Figure 7 Figure 8 </p></div></div> </div> <p> Until such time that browser implementation of XML and XSLT and consumer adoption of these new browsers reach a level that permits this type of application design, future versions of XMLCat will continue to incorporate these and other new features using only server-side technology. </p> <p> In order to be practical for even moderately large library catalogs, an XML-based library catalog will have to incorporate the use of some type of database server software. The type will be determined by the structure of the underlying XML (Cagle, 2000). According to Professional XML, "the future of XML is inseparable from database technology," which would include "the ability to generate XML documents automatically from data stored in diverse mediums, and the ability to exchange information from different data stores" (Anderson et al., 2000). The key here is that the XML in the catalog would be updated dynamically from a database, as opposed to the more static approach currently employed by XMLCat. </p> <p> Although a lot more work needs to be done in this area, I hope that this entire project, as preliminary as it is, points the way to and further stimulates development of XML-based library catalogs. </p> <div> <div><strong>References</strong></div><div><div class="References_content"> <p> References and further reading </p> </div></div> </div> <div> <div><strong>References</strong></div><div><div class="References_content"> <p> Anderson, R. et al. (2000), Professional XML, Wrox Press, Chicago, IL. </p><p> Cagle, K. (2000), "How to find the best XML server for you", XML Magazine, Fall, pp. 48-56. </p><p> Flanagan, D. (1998), JavaScript: The Definitive Guide, 3rd ed., O'Reilly, Sebastpool, CA. </p><p> Goodman, D. (1998), JavaScript Bible, 3rd ed., IDG Books, Foster City, CA. </p><p> Harms, D. and McDonald, K. (2000), The Quick Python Book, Manning Publications, Greenwich, CT. </p><p> Harold, E.R. (1999), XML Bible, IDG Books, Foster City, CA. </p> </div></div> </div> <div> <div><strong>References</strong></div><div><div class="References_content"> <p> Hatfield, B. (1999), Active Server Pages for Dummies, 2nd ed., IDG Books, Foster City, CA. </p><p> Homer, A. (1999), XML in IES: Programmer's Reference, Wrox Press, Chicago, IL. </p><p> Kay, M. (2000), XSLT: Programmer's Reference, Wrox Press, Chicago, IL. </p><p> Miller, D.R. (2000). "XML: libraries' strategic opportunity", netConnect, Summer, pp. 18-22. </p><p> Niederst, J. (1999), Web Design in a Nutshell: A Desktop Quick Reference, O'Reilly, Sebastpool, CA. </p><p> Pardi, W.J. (1999), XML in Action, Microsoft Press, Redmond, WA. </p> </div></div> </div> <div> <div><strong>AuthorAffiliation</strong></div><div><div class="AuthorAffiliation_content"> <p> The author </p> </div></div> </div> <div> <div><strong>AuthorAffiliation</strong></div><div><div class="AuthorAffiliation_content"> <p> Paul Yachnes is Manager at the Information Resource Center, Newspaper Association of America, Vienna, Virginia, USA. </p> </div></div> </div> </body> </html></Text></root></div></div><div class="rs_skip"><div style="display: none;" class="translationCont" id="fulltext_translation_container_MSTAR_233604177"><div class="info_panel" id="fulltext_translation_header"><p class="printViewTranslator partial">You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. <a onClick="showFullDisclaimerOnClick('fulltext');" id="fulltext_show_disclaimer" href="#">Show full disclaimer</a></p><p style="display:none;" id="fulltext_full">Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. <a href="#" onClick="hideFullDisclaimerOnCLick('fulltext');" id="fulltext_hide_disclaimer">Hide full disclaimer </a></p></div><div class="display_record_text_copy" id="fulltext_translation_MSTAR_233604177"></div><div style="padding:10px; display:none;" class="well" id="fulltext_translationButtonDiv_MSTAR_233604177"> Longer documents can take a while to translate. Rather than keep you waiting, we have only translated the first few paragraphs. Click the button below if you want to translate the rest of the document. <div class="translateAllEvent"><button class="btn btn-default" id="fulltext_translateAllButton_MSTAR_233604177">Translate All</button></div></div><div style="display:none;" class="display_record_text_copy" id="fulltext_translation2_MSTAR_233604177"></div></div></div><div id="copyRightDiv"><p>Copyright MCB UP Limited (MCB) 2000</p></div></div></div><div class="clear_left"></div><!-- Search within results box - Show box only if pagination --><div class="clear_left"></div><!-- Display 'Full text' heading / Machine Translated heading --><div style="position:relative"><div class="clr"></div></div></div></div> </article><div data-container-type="zone" id="suggestedSourcesBelowFullText"><img class="t-autoloader-icon" src="/assets/ctx/51be0a5b/images/icons/blank.gif" alt=""/><br/><br/><br/></div></div><div class="col-lg-4 col-md-4 col-sm-4 col-xs-12" id="side_panel"><div class="cd-panel from-right ra-panel-small" id="moreLikeThisPanel"><div class="cd-panel-container"><div class="cd-panel-content no-padding"><div id="raPanelWithKeyTakeawayOpen"></div><div data-container-type="zone" id="progressivedisplay"><img class="t-autoloader-icon" src="/assets/ctx/51be0a5b/images/icons/blank.gif" alt=""/><br/><br/><br/></div></div></div></div></div></div></div></div><div id="googleDriveOverlayId"></div><div id="oneDriveOverlayId"></div></div></div><span style="display:none;" id="top-link-block"><a href="#" class="well well-sm"> Back to top<span aria-hidden="true" class="uxf-icon uxf-up-caret"></span></a></span></div><div role="contentinfo" id="footer-wrapper"><div id="footer" class="clearfix"><div class="row"><div class="col-xs-12 col-sm-4 col-md-4"><div class="row"><div style="background-image: url('https://pq-static-content.proquest.com/onesearch/prod/main/2025.12.0.9709/images/company-branding/pq-cl-logo-footer.png')" class="col-xs-4 col-sm-4 col-md-4 logo"><span class="sr-only">ProQuest, part of Clarivate</span></div></div></div><div class="col-xs-12 col-sm-8 col-md-8"><ul class="quicklinks list-inline"><li><a title="About ProQuest" href="https://about.proquest.com">About ProQuest</a></li><li><a title="Contact Us" href="https://about.proquest.com/go/contactus">Contact Us</a></li><li><a href="https://about.proquest.com/go/termsandconditions" id="termsConditionsFooterLink">Terms and Conditions</a></li><li><a href="https://about.proquest.com/go/privacy" id="privacyPolicyFooterLink">Privacy Policy</a></li><li><a href="https://about.proquest.com/go/cookie" id="cookiePolicyFooterLink">Cookie Policy</a></li><li><a aria-label="Manage cookie preferences" class="ot-sdk-show-settings" id="cookieSettingsFooterLink" href="javascript:void(0);"></a></li><li><a accesskey="0" href="https://about.proquest.com/go/accessibility-platform" id="accessibilityFooterLink">Accessibility</a></li></ul></div></div><div class="row"><div class="col-xs-12 col-sm-12 col-md-12"><span class="copyrightlink pull-right">Copyright © 2026 ProQuest LLC.</span></div></div></div></div></div><script src="/assets/meta/z38a859b2/extras/survey/qualtrics.js" async="async" class="optanon-category-C0002" type="text/plain"></script><div style="display: none;" value="subscriber" id="pool">0vIhW0QnXUwLg3UmZzzX9A==:5TRUM2mdCi70qJlc37Ak/1zHftusVU26sNxN4YaXhEPn4T5z+6l4WfKxGW97oJvJGzcMYZiNgvNklXRpAE2co5OHDD/Otmw2ergTo59Qbfqh2rq6PVcyCJS9jvdBptNBc8BG9P1ydbMceGVnt5+MP0VMz9+vjWsQ52Y92+Sja9N0fhTN8ZUGpn2WottztDjJ2LqJ/+WOw9q9rNOip7mDQQkf8dAA0Cux/OJyhTaRxFZay1Vi9B7dqYfatEmVXDVG5UnofLWeHmmjU3IUzuAWBfjzFlrw7VHRhfeh90CLj/tKsGv8YS1rBA+bQ5f+tlzRkJojj+Bww9K7C2naYmk92wz/IhHnIjMhe06Dh3cCghtj3KJkyk563YThgEGaDEvRz17dArzGT5wm3KvKHBtZhw==</div><div id="ZN_5nVeM4sDdAHV9Y1"><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div><script type="text/javascript">var require = {"shim":{"t5/core/typeahead":["jquery"],"howler":{"exports":"howler"},"viewer":["jquery"],"imagemapster":["jquery"],"mark":["jquery"],"slick":["jquery"],"chartjs":["moment"],"pdfObject":{"exports":"PDFObject"}},"baseUrl":"/modules.gz","waitSeconds":60}; </script><script src="/assets/stack/z9f60173b/en/core.js" type="text/javascript"></script><script type="text/javascript">require(["t5/core/pageinit"], function(pi) { pi(["/assets/stack/z4f4e9ccd/en/os-std.js","/assets/stack/z2c86c36e/en/pqc.js","/assets/meta/zf9e2a3a9/extras/slick/slick.min.js","/assets/meta/z9cb95201/js/components/docview/DocviewPopovers.js","/assets/meta/pqc/zb81efedd/toast/bootstrap-notify.min.js","/assets/stack/zd7d11b07/en/os-xtra.js","/assets/ctx/zf878c923/extras/analytics/GTMContainerGa4Prod.js"], [["t5/core/pageinit:evalJavaScript","window.onload=function(){setImageCaptionWidth();}"],["t5/core/pageinit:evalJavaScript","pqga.pushDataToGA('1')"],["base/DocViewBase",{"publisherName":"Emerald Group Publishing Limited","scrollToSection":false,"includePendoScrollTracking":true,"sourcetype":"Scholarly Journals"}],["components/LogoCheck:initialize",{"logoURL":"aHR0cHM6Ly93d3cucHJvcXVlc3QuY29tL2xvZ29zZWxlY3Rvci8=","processing":"L3Byb2Nlc3NpbmdyZXF1ZXN0","university":"University","logo":"Q0JBNTk2NEI4ODk5MjMxMUQxOTY3MDZFQjk4NUI4OEQuaS0wZGUxNGQyZDFjZDRlMThjOA=="}],["components/thirdparty/Pendo:ProQuestPendo",{"accountId":"208611","accountName":"Universidad de El Salvador","isPaidUser":true,"userIP":"216.73.216.216","isTrialProduct":false,"productMoniker":"","interfaceLanguage":"en","isMrSignedInUser":false,"authType":"Token","doNotProcessEventUrl":"https://www.proquest.com/docview.pagelayout.pendo:donotprocess?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics"}],["t5/core/init","databasePageLink",{"linkId":"databasepagelink","linkFormId":"databaseOpenLayer"}],["components/markedlist/SelectedItemsCount:initializeSelectedItemsCount",{"clientId":"selecteditemscount","singleItemMsg":"1","multipleItemMsg":"%d","itemMsg":"[[missing key: selectedItems.multipleItems.checkbox_badge]]","folderId":"selecteditemsfolder","fullFolder":"folderFull","emptyFolder":"uxf-icon uxf-folder"}],["components/ModalOverlay",{"clientId":"gaSelectedItems2_itemsLink_noItemsOverlay"}],["components/markedlist/SelectedItemsLink",{"clientId":"gaSelectedItems2","numItems":0,"hideSelectedItemsLinkWithNoItems":false}],"components/PopupLocaleSwitcherLink",["components/markedlist/SelectedItemsCount:initializeSelectedItemsCount",{"clientId":"selecteditemscount_0","singleItemMsg":"1","multipleItemMsg":"%d","itemMsg":"[[missing key: selectedItems.multipleItems.checkbox_badge]]","folderId":"selecteditemsfolder","fullFolder":"folderFull","emptyFolder":"uxf-icon uxf-folder"}],["components/ModalOverlay",{"clientId":"gaSelectedItems_itemsLink_noItemsOverlay"}],["components/markedlist/SelectedItemsLink",{"clientId":"gaSelectedItems","numItems":0,"hideSelectedItemsLinkWithNoItems":false}],"t5/core/zone",["t5/core/init","autocompleter",{"elementId":"searchTerm","menuId":"searchTerm:menu","url":"https://www.proquest.com/docview.pagelayout.quicksearchbox.searchterm:autocomplete?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","config":{"paramName":"t:input","minChars":2,"formId":"searchForm","frequency":0.01,"disableUrl":"https://www.proquest.com/docview.pagelayout.quicksearchbox.searchterm:disableautocomplete?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","disabled":false,"disableAutoCompleteNote":"Press the enter key to toggle auto-complete off or escape to close suggestions box","suggestionBoxNote":"Use down key to access and browse search suggestions after input. Confirm your choice with enter key, or use esc key to close the suggestions box. ","autoExecute":true,"leftOffset":0,"pageName":"DocView","autoCompleteDeluxe":false,"submitButtonName":"expandedSearch"}}],"t5/core/forms",["pqc/components/submit","expandedSearch","searchForm",true,"","",true],["components/search/QuickSearchBox:quickSearchBox",{"toggleQuickSearchUrl":"https://www.proquest.com/docview.pagelayout.quicksearchbox:togglequicksearchstate?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","docViewPage":true}],["t5/core/init","expandedBasicSearchBox",{}],["components/ModalOverlay",{"clientId":"languages"}],["t5/core/init","signInOverlay",{"refreshOnSignIn":""}],["components/ModalOverlay",{"clientId":"signInFormOverlay"}],"t5/core/validation",["components/ModalOverlay",{"clientId":"endsession_confirm","focusElement":"#mrDropdown"}],["components/ModalOverlay",{"clientId":"endSessionWarning"}],["t5/core/init","endSessionWarning",{"timeout":1800,"warntime":300,"pingURL":"https://www.proquest.com/docview.pagelayout.endsession:ping?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","secondsText":"seconds","minutesText":"minutes","hoursText":"hours","googleCredentialLinked":false,"microsoftCredentialLinked":false,"endSessionWarningCarryOnId":"endSessionWarningCarryOn"}],"components/DonorBranding","CarouselSourceTypeIcons",["pqc/components/Popover:popover",{"triggerId":"authPopoverTrigger-MSTAR_233604177-0","clientId":"authorPreview-MSTAR_233604177-0","updateUrl":"https://www.proquest.com/docview.authorpopover.popover:updatepopoverzone/Yachnes,+Paul/MSTAR_233604177/1/1F2ED4CBFC044759PQ/false?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics&t:cp=maintain/resultcitationblocks","popoverZoneId":"popoverZone","loadOnce":false,"reposition":false,"focusElement":"authPopoverTrigger-MSTAR_233604177-0","popoverOptions":{"html":true,"placement":"bottom","customClass":"auth-popover"}}],["pqc/components/Popover:popover",{"triggerId":"pubPopoverTrigger-MSTAR_233604177","clientId":"publicationPreview-MSTAR_233604177","updateUrl":"https://www.proquest.com/docview.publicationpopover.popover:updatepopoverzone/MSTAR_233604177/0/1F2ED4CBFC044759PQ/DocView/233604177/1F2ED4CBFC044759PQ/1?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics&t:cp=maintain/resultcitationblocks","popoverZoneId":"popoverZone_0","loadOnce":false,"reposition":false,"focusElement":"pubPopoverTrigger-MSTAR_233604177","popoverOptions":{"html":true,"placement":"bottom","customClass":"pub-popover"}}],["components/docview/HeaderTitle",{"moreLinkAccessibilityText":"More title","lessLinkAccessibilityText":"Less title"}],["components/DownloadPDF:initialize",{"filename":"XMLCat_An_XML-encoded_online_.pdf","filenamepage":"XMLCat_An_XML-encoded_online__page.pdf","downloadJPMorganPDFLinkId":"downloadJPMorganPDFLink_MSTAR_233604177","downloadPDFLinkId":"downloadPDFLink_MSTAR_233604177","downloadPDFPageLinkId":"downloadPDFPageLink_MSTAR_233604177","downloadPdfAdditionalEventsUrl":"https://www.proquest.com/docview.docviewusetools_0.usetoolsotherformatlinks.downloadpdf_0:downloadpdfadditionalevents/MSTAR_233604177/ScannedPDF/1/$N?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics"}],["components/citation/CiteThis:initialize",{"toastMessage":"Copied to clipboard"}],["pqc/components/CopyToClipboard:CopyToClipboard",{"elementId":"copyUrlLink","textElementId":"copyUrlDivId","copyElementType":"DIV","successMsgId":"copyUrlToast","successMsg":"Link copied to clipboard"}],["components/ModalOverlay",{"clientId":"mr_noSelectedItems"}],"components/docview/Tab",["components/thirdparty/MathJaxToggle:mathJaxToggle",{"enableMathJax":"Enable MathJax","disableMathJax":"Disable MathJax"}],["t5/core/init","overlay",{"autofocus":true,"clientValid":true,"options":{"eid":"abstract_loader_overlay_MSTAR_233604177","afocus":"overlayAutofocus-abstract_loader_overlay_MSTAR_233604177","boxid":"pq_layer","title":"<a href=\"#\" id=\"overlayAutofocus-abstract_loader_overlay_MSTAR_233604177\" class=\"overlayAutofocus\"><span class=\"hiddenText\">Abstract<\/span><\/a><span class=\"overlayTitle\">Abstract<\/span><span class=\"hiddenText\">Press the Escape key to close<\/span>"}}],["t5/core/init","translateFieldLink",{"field":"abstract","uniqueId":"MSTAR_233604177","translateURL":"https://www.proquest.com/docview.abstract.translatefieldlink:translate?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","revertURL":"https://www.proquest.com/docview.abstract.translatefieldlink:revert?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","cancelURL":"https://www.proquest.com/docview.abstract.translatefieldlink:cancel?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","hiddenLanguageOption":"- replaces the original text below with the translated version, closing the list of language options.","itemId":"MSTAR_233604177","itemUniqueId":"MSTAR_233604177","resultsId":"1F2ED4CBFC044759PQ","resultIndex":1,"translated":false,"languages":[{"name":"Arabic","code":"ara","targetLanguages":[{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Azerbaijani","code":"aze","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Chinese (Simplified)","code":"zho","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Chinese (Traditional)","code":"cmn","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Czech","code":"cze","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Danish","code":"dan","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"English","code":"eng","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Finnish","code":"fin","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"French","code":"fre","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"German ","code":"ger","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Hebrew","code":"heb","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Indonesian","code":"ind","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Italian","code":"ita","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Japanese","code":"jpn","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Korean","code":"kor","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Polish","code":"pol","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Portuguese","code":"por","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Russian","code":"rus","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Spanish","code":"spa","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Swedish","code":"swe","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"tur","name":"Turkish"}]},{"name":"Turkish","code":"tur","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"}]}],"defaultSourceLanguage":"scl","abstract_sourcelanguage":"abstract_sourcelanguage","fulltext_sourcelanguage":"fulltext_sourcelanguage"}],["t5/core/init","translationContainer",{"field":"abstract","uniqueId":"MSTAR_233604177"}],["components/docview/Abstract","MSTAR_233604177"],["components/docview/AbstractSummary",{"uniqueid":"MSTAR_233604177","showMoreMessage":"More","showLessMessage":"Less","moreLinkAccessibilityText":"More abstract for XMLCat: An XML-encoded online library catalog: SR","lessLinkAccessibilityText":"Less abstract for XMLCat: An XML-encoded online library catalog: SR","displayFullAbstract":false}],["pqc/components/HitNavigationSwitch:initialize",{"clientId":"hitnavigationswitch","nextAltText":"Next hit","nextLinkTitle":"Jump to next hit","prevAltText":"Previous hit","prevLinkTitle":"Jump to previous hit","field":"fulltext","fieldDiv":"fulltext_field_MSTAR_233604177","navEnabled":false,"enableLinkText":"Turn on search term navigation","disableLinkText":"Turn off search term navigation","searchTermNavigationAlreadyOn":false,"setKeepSearchTermNavigationOnURI":"https://www.proquest.com/docview.fulltext.hitnavigationswitch:setkeepsearchtermnavigationon/true?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics"}],["t5/core/init","overlay",{"autofocus":true,"clientValid":true,"options":{"eid":"fulltext_loader_overlay_MSTAR_233604177","afocus":"overlayAutofocus-fulltext_loader_overlay_MSTAR_233604177","boxid":"pq_layer","title":"<a href=\"#\" id=\"overlayAutofocus-fulltext_loader_overlay_MSTAR_233604177\" class=\"overlayAutofocus\"><span class=\"hiddenText\">Full text<\/span><\/a><span class=\"overlayTitle\">Full text<\/span><span class=\"hiddenText\">Press the Escape key to close<\/span>"}}],["t5/core/init","translateFieldLink",{"field":"fulltext","uniqueId":"MSTAR_233604177","translateURL":"https://www.proquest.com/docview.fulltext.translatefieldlink:translate?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","revertURL":"https://www.proquest.com/docview.fulltext.translatefieldlink:revert?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","cancelURL":"https://www.proquest.com/docview.fulltext.translatefieldlink:cancel?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","hiddenLanguageOption":"- replaces the original text below with the translated version, closing the list of language options.","itemId":"MSTAR_233604177","itemUniqueId":"MSTAR_233604177","resultsId":"1F2ED4CBFC044759PQ","resultIndex":1,"translated":false,"languages":[{"name":"Arabic","code":"ara","targetLanguages":[{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Azerbaijani","code":"aze","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Chinese (Simplified)","code":"zho","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Chinese (Traditional)","code":"cmn","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Czech","code":"cze","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Danish","code":"dan","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"English","code":"eng","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Finnish","code":"fin","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"French","code":"fre","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"German ","code":"ger","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Hebrew","code":"heb","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Indonesian","code":"ind","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Italian","code":"ita","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Japanese","code":"jpn","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Korean","code":"kor","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Polish","code":"pol","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Portuguese","code":"por","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Russian","code":"rus","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Spanish","code":"spa","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"swe","name":"Swedish"},{"code":"tur","name":"Turkish"}]},{"name":"Swedish","code":"swe","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"tur","name":"Turkish"}]},{"name":"Turkish","code":"tur","targetLanguages":[{"code":"ara","name":"Arabic"},{"code":"aze","name":"Azerbaijani"},{"code":"zho","name":"Chinese (Simplified)"},{"code":"cmn","name":"Chinese (Traditional)"},{"code":"cze","name":"Czech"},{"code":"dan","name":"Danish"},{"code":"eng","name":"English"},{"code":"fin","name":"Finnish"},{"code":"fre","name":"French"},{"code":"ger","name":"German "},{"code":"heb","name":"Hebrew"},{"code":"ind","name":"Indonesian"},{"code":"ita","name":"Italian"},{"code":"jpn","name":"Japanese"},{"code":"kor","name":"Korean"},{"code":"pol","name":"Polish"},{"code":"por","name":"Portuguese"},{"code":"rus","name":"Russian"},{"code":"spa","name":"Spanish"},{"code":"swe","name":"Swedish"}]}],"defaultSourceLanguage":"scl","abstract_sourcelanguage":"abstract_sourcelanguage","fulltext_sourcelanguage":"fulltext_sourcelanguage"}],["components/docview/PollyReader",{"pollyAudioEventUrl":"https://www.proquest.com/docview.fulltext.pollyreader:getaudioevent/233604177?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","audioError":false,"listenToSelectionLinkUri":"https://www.proquest.com/docview.fulltext.pollyreader:listentoselectionlink?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","playerTitle":"Listening to full document","isSelectedText":false}],["t5/core/init","translationContainer",{"field":"fulltext","uniqueId":"MSTAR_233604177"}],"components/ZebraStripe",["components/docview/FullText","fulltext_field_MSTAR_233604177"],["t5/core/init","interDocThumbs",{"interDocImagesEventLink":"https://www.proquest.com/docview.fulltext:interdocimagesevent/DocView?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics"}],["components/defer/AbstractDeferredDisplay:abstractDeferredDisplay",{"componentId":"suggestedSourcesBelowFullText","uri":"https://www.proquest.com/docview.suggestedsources.suggestedsourcesbelowfulltext:longdeferreddisplayaction/$N/233604177?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics","observerOptions":{"rootMargin":"100px","threshold":0}}],["t5/core/zone:deferredZoneUpdate","progressivedisplay","https://www.proquest.com/docview.researchassistantpanel.progressivedisplay/$N/false?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics"],"components/ai/ResearchAssistantBase",["components/visualdesign/MainContentLeft:mainContentLeft",{"cookieName":"DocView_maincontentleft","sidePanelToggleLink":"sidePanelToggleLink","mainContentLeftId":"mainContentLeft","sidePanelId":"side_panel","showSidePanelText":"Show more options","hideSidePanelText":"Hide more options"}],["components/docview/DocViewAnalytics",{"primaryAuthor":"Yachnes, Paul","author2":"","author3,":"","containsCitedBy":"N","documentLanguage":"English","doi":"","fulltextAccess":"Y","goID":"233604177","issn":"1527-1161","languageOfPublication":"English","pageCount":"9","objectType":"Feature","isOpenAccess":"N","pubPlace":"Bingley","pubId":"36747","pubSubject":"Computers--Microcomputers","pubTitle":"Library Computing","year":"2000","recordType":"Feature","searchId":"1F2ED4CBFC044759PQ","searchQueryTerms":"","sourceType":"Scholarly Journals","subjectIndex1":"","subjectIndex2":"","subjectIndex3":"","subjectIndex4":"","displayFormatString":"TextWithInlineImages"}],["components/CheckSession:checkSession",{"sessionEndedPageName":"SessionEnded"}],["t5/core/init","captureHost",{"url":"/docview.pagelayout.captureproxyhost:capturehost?_csrf=2d350802-b43f-473d-8913-8fb9f241c9aa&t:ac=233604177/fulltextwithgraphics"}],["t5/core/init","popupWindowLinks",{}],["components/InitGoogleAnalytics",{"analyticsPageTitle":"","analyticsScreenName":"DocView: Full text","analyticsProductName":"","analyticsProductMonikerOOB":"","analyticsAccountId":"208611","sessionID":"20260102120328828:230195","jSessionId":"CBA5964B88992311D196706EB985B88D.i-0de14d2d1cd4e18c8","openLayer":"0"}],"pages/TooltipBottom","pages/MobileMenuDocOptions",["t5/core/pageinit:focus","siUsername"]]); });</script></body></html>