bplist00_WebSubresources_WebMainResource_WebSubframeArchives
_WebResourceData_WebResourceMIMEType_WebResourceResponse^WebResourceURL@\image/x-iconObplist0056X$versionX$objectsY$archiverT$top %&-./01U$null
R$6R$2R$7R$3R$8V$classR$4R$9R$0R$5R$1
!"#$[NS.relativeWNS.base _+http://bssa.geoscienceworld.org/favicon.ico'()*Z$classnameX$classesUNSURL+,UNSURLXNSObject#Amv\image/x-iconP#'(23]NSURLResponse4,]NSURLResponse_NSKeyedArchiver78_WebResourceResponse # - 2 7 C I ` c f i l o v y | $12;@NQ_qt 9 _+http://bssa.geoscienceworld.org/favicon.ico _WebResourceTextEncodingName_WebResourceFrameNameUUTF-8O
Intensity, Magnitude, Location, and Attenuation in India for Felt Earthquakes since 1762 -- Szeliga et al. 100 (2): 570 -- Bulletin of the Seismological Society of America
Ytext/html_http://bssa.geoscienceworld.org/cgi/reprint/100/2/570?maxtoshow=&hits=10&RESULTFORMAT=1&author1=szeliga&andorexacttitle=and&field_name=fulltext&searchid=1&FIRSTINDEX=0&sortspec=relevance&fdate=3/1/1911&tdate=6/30/2010&resourcetype=HWCITP UUTF-8@_application/pdf_9http://bssa.geoscienceworld.org/cgi/reprint/100/2/570.pdfWreprintH %*/49>C !"#$O /*
Cross-Browser XMLHttpRequest v1.2
=================================
Emulate Gecko 'XMLHttpRequest()' functionality in IE and Opera. Opera requires
the Sun Java Runtime Environment .
by Andrew Gregory
http://www.scss.com.au/family/andrew/webdesign/xmlhttprequest/
This work is licensed under the Creative Commons Attribution License. To view a
copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/ or
send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California
94305, USA.
Attribution: Leave my name and web address in this script intact.
Not Supported in Opera
----------------------
* user/password authentication
* responseXML data member
Not Fully Supported in Opera
----------------------------
* async requests
* abort()
* getAllResponseHeaders(), getAllResponseHeader(header)
*/
// IE support
if (window.ActiveXObject && !window.XMLHttpRequest) {
window.XMLHttpRequest = function() {
var msxmls = new Array(
'Msxml2.XMLHTTP.5.0',
'Msxml2.XMLHTTP.4.0',
'Msxml2.XMLHTTP.3.0',
'Msxml2.XMLHTTP',
'Microsoft.XMLHTTP');
for (var i = 0; i < msxmls.length; i++) {
try {
return new ActiveXObject(msxmls[i]);
} catch (e) {
}
}
return null;
};
}
// Gecko support
/* ;-) */
// Opera support
if (window.opera && !window.XMLHttpRequest) {
window.XMLHttpRequest = function() {
this.readyState = 0; // 0=uninitialized,1=loading,2=loaded,3=interactive,4=complete
this.status = 0; // HTTP status codes
this.statusText = '';
this._headers = [];
this._aborted = false;
this._async = true;
this._defaultCharset = 'ISO-8859-1';
this._getCharset = function() {
var charset = _defaultCharset;
var contentType = this.getResponseHeader('Content-type').toUpperCase();
val = contentType.indexOf('CHARSET=');
if (val != -1) {
charset = contentType.substring(val);
}
val = charset.indexOf(';');
if (val != -1) {
charset = charset.substring(0, val);
}
val = charset.indexOf(',');
if (val != -1) {
charset = charset.substring(0, val);
}
return charset;
};
this.abort = function() {
this._aborted = true;
};
this.getAllResponseHeaders = function() {
return this.getAllResponseHeader('*');
};
this.getAllResponseHeader = function(header) {
var ret = '';
for (var i = 0; i < this._headers.length; i++) {
if (header == '*' || this._headers[i].h == header) {
ret += this._headers[i].h + ': ' + this._headers[i].v + '\n';
}
}
return ret;
};
this.getResponseHeader = function(header) {
var ret = getAllResponseHeader(header);
var i = ret.indexOf('\n');
if (i != -1) {
ret = ret.substring(0, i);
}
return ret;
};
this.setRequestHeader = function(header, value) {
this._headers[this._headers.length] = {h:header, v:value};
};
this.open = function(method, url, async, user, password) {
this.method = method;
this.url = url;
this._async = true;
this._aborted = false;
this._headers = [];
if (arguments.length >= 3) {
this._async = async;
}
if (arguments.length > 3) {
opera.postError('XMLHttpRequest.open() - user/password not supported');
}
this.readyState = 1;
if (this.onreadystatechange) {
this.onreadystatechange();
}
};
this.send = function(data) {
if (!navigator.javaEnabled()) {
alert("XMLHttpRequest.send() - Java must be installed and enabled.");
return;
}
if (this._async) {
setTimeout(this._sendasync, 0, this, data);
// this is not really asynchronous and won't execute until the current
// execution context ends
} else {
this._sendsync(data);
}
}
this._sendasync = function(req, data) {
if (!req._aborted) {
req._sendsync(data);
}
};
this._sendsync = function(data) {
this.readyState = 2;
if (this.onreadystatechange) {
this.onreadystatechange();
}
// open connection
var url = new java.net.URL(new java.net.URL(window.location.href), this.url);
var conn = url.openConnection();
for (var i = 0; i < this._headers.length; i++) {
conn.setRequestProperty(this._headers[i].h, this._headers[i].v);
}
this._headers = [];
if (this.method == 'POST') {
// POST data
conn.setDoOutput(true);
var wr = new java.io.OutputStreamWriter(conn.getOutputStream(), this._getCharset());
wr.write(data);
wr.flush();
wr.close();
}
// read response headers
// NOTE: the getHeaderField() methods always return nulls for me :(
var gotContentEncoding = false;
var gotContentLength = false;
var gotContentType = false;
var gotDate = false;
var gotExpiration = false;
var gotLastModified = false;
for (var i = 0; ; i++) {
var hdrName = conn.getHeaderFieldKey(i);
var hdrValue = conn.getHeaderField(i);
if (hdrName == null && hdrValue == null) {
break;
}
if (hdrName != null) {
this._headers[this._headers.length] = {h:hdrName, v:hdrValue};
switch (hdrName.toLowerCase()) {
case 'content-encoding': gotContentEncoding = true; break;
case 'content-length' : gotContentLength = true; break;
case 'content-type' : gotContentType = true; break;
case 'date' : gotDate = true; break;
case 'expires' : gotExpiration = true; break;
case 'last-modified' : gotLastModified = true; break;
}
}
}
// try to fill in any missing header information
var val;
val = conn.getContentEncoding();
if (val != null && !gotContentEncoding) this._headers[this._headers.length] = {h:'Content-encoding', v:val};
val = conn.getContentLength();
if (val != -1 && !gotContentLength) this._headers[this._headers.length] = {h:'Content-length', v:val};
val = conn.getContentType();
if (val != null && !gotContentType) this._headers[this._headers.length] = {h:'Content-type', v:val};
val = conn.getDate();
if (val != 0 && !gotDate) this._headers[this._headers.length] = {h:'Date', v:(new Date(val)).toUTCString()};
val = conn.getExpiration();
if (val != 0 && !gotExpiration) this._headers[this._headers.length] = {h:'Expires', v:(new Date(val)).toUTCString()};
val = conn.getLastModified();
if (val != 0 && !gotLastModified) this._headers[this._headers.length] = {h:'Last-modified', v:(new Date(val)).toUTCString()};
// read response data
var reqdata = '';
var stream = conn.getInputStream();
if (stream) {
var reader = new java.io.BufferedReader(new java.io.InputStreamReader(stream, this._getCharset()));
var line;
while ((line = reader.readLine()) != null) {
if (this.readyState == 2) {
this.readyState = 3;
if (this.onreadystatechange) {
this.onreadystatechange();
}
}
reqdata += line + '\n';
}
reader.close();
this.status = 200;
this.statusText = 'OK';
this.responseText = reqdata;
this.readyState = 4;
if (this.onreadystatechange) {
this.onreadystatechange();
}
if (this.onload) {
this.onload();
}
} else {
// error
this.status = 404;
this.statusText = 'Not Found';
this.responseText = '';
this.readyState = 4;
if (this.onreadystatechange) {
this.onreadystatechange();
}
if (this.onerror) {
this.onerror();
}
}
};
};
}
// ActiveXObject emulation
if (!window.ActiveXObject && window.XMLHttpRequest) {
window.ActiveXObject = function(type) {
switch (type.toLowerCase()) {
case 'microsoft.xmlhttp':
case 'msxml2.xmlhttp':
case 'msxml2.xmlhttp.3.0':
case 'msxml2.xmlhttp.4.0':
case 'msxml2.xmlhttp.5.0':
return new XMLHttpRequest();
}
return null;
};
}
_application/x-javascriptObplist00ijX$versionX$objectsY$archiverT$top "()012LMNOPQRSTUVWXYZ[\]^_cdU$null
!R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1 #$%&[NS.relativeWNS.base _Ahttp://bssa.geoscienceworld.org/javascript/ajax/xmlhttprequest.js*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#AB+3456AWNS.keysZNS.objects789:;<=>?@
BC@EFGHIJKVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-Length_X-Highwire-SessionidTEtagZKeep-Alive_0Apache/1.3.26 (Unix) DAV/1.0.3 ApacheJServ/1.1.2Ubytes_application/x-javascript_Sun, 11 Jul 2010 00:05:00 GMT_Mon, 24 Apr 2006 22:57:19 GMTT8394^durt1pmrs1.JS1_"1454f-20ca-444d57cf"Ztimeout=15*+`a_NSMutableDictionary`b/\NSDictionary *+ef_NSHTTPURLResponsegh/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverkl_WebResourceResponse # - 2 7 Y _ z } $)4=CFLU^`goz| %0ci '*/CG[i{~ m _Ahttp://bssa.geoscienceworld.org/javascript/ajax/xmlhttprequest.js &'()O:{/*****************************************************************************
* javascript/ajax/utility.js
*
* Utility functions for working with XMLHttpRequest data.
*
* Copyright 2006 Board of Trustees of the Leland Stanford Junior University.
****************************************************************************/
/*
* Copy XML nodes into an HTMLElement. This effectively
* clones XML markup which uses XHTML naming conventions
* into an HTML DOM.
*/
function copy_xml_to_html(src, dst) {
if (src.nodeType == 1) { /* Node.ELEMENT_NODE */
var e = document.createElement(src.nodeName);
for (var i = 0; i < src.childNodes.length; i++) {
copy_xml_to_html(src.childNodes[i], e);
}
for (var i = 0; i < src.attributes.length; i++) {
var n = src.attributes[i].name;
var v = unescape_xml_string(src.attributes[i].value);
e.setAttribute(n, v);
if (n == "class") {
e.className = v;
}
else if (n == "style") {
set_css_style(v, e, "");
}
}
dst.appendChild(e);
}
else if (src.nodeType == 3) { /* Node.TEXT_NODE */
dst.appendChild(document.createTextNode(src.nodeValue));
}
}
/*
* It is unclear that this is the right thing to be calling
* from copy_xml_to_html, but it appears that Safari decides
* to convert & to the NCR #, and then encodes that
* NCR to &%26%2338;. So, I'm going to treat the DOM Attr
* value as a plain string, and run our XML string input
* through the decoding routine below.
*/
function unescape_xml_string(s) {
return s.replace(/'/g, "'")
.replace(/'/g, "'")
.replace(/"/g, "\"")
.replace(/"/g, "\"")
.replace(/>/g, ">")
.replace(/>/g, ">")
.replace(/</g, "<")
.replace(/</g, "<")
.replace(/&/g, "&")
.replace(/&/g, "&");
}
/*
* Parse set of CSS rules and apply them to an element.
* This is quite horrifying, but I'm unable to determine
* how else to handle this with IE 6. FireFox and other
* sane browsers let you simply set the style attribute
* or use e.style.setProperty(rule, value, priority),
* IE 6 appears to have neither of these capabilities..
*/
function set_css_style(css, e, priority) {
var rules = css.split(";");
for (var i = 0; i < rules.length; i++) {
var nvpair = rules[i].split(":");
if (nvpair.length == 2) {
try {
var name = nvpair[0]; /* style attribute */
var value = nvpair[1]; /* attribute value */
/*
* For each possible style attribute, set the
* appropriate style property in the element.
*/
if (name == "background") {
e.style.background = value;
}
else if (name == "background-attachment") {
e.style.backgroundAttachment = value;
}
else if (name == "background-color") {
e.style.backgroundColor = value;
}
else if (name == "background-image") {
e.style.backgroundImage = value;
}
else if (name == "background-position") {
e.style.backgroundPosition = value;
}
else if (name == "background-position-x") {
e.style.backgroundPositionX = value;
}
else if (name == "background-position-y") {
e.style.backgroundPositionY = value;
}
else if (name == "background-repeat") {
e.style.backgroundRepeat = value;
}
else if (name == "behavior") {
e.style.behavior = value;
}
else if (name == "border") {
e.style.border = value;
}
else if (name == "border-bottom") {
e.style.borderBottom = value;
}
else if (name == "border-bottom-color") {
e.style.borderBottomColor = value;
}
else if (name == "border-bottom-style") {
e.style.borderBottomStyle = value;
}
else if (name == "border-bottom-width") {
e.style.borderBottomWidth = value;
}
else if (name == "border-collapse") {
e.style.borderCollapse = value;
}
else if (name == "border-color") {
e.style.borderColor = value;
}
else if (name == "border-left") {
e.style.borderLeft = value;
}
else if (name == "border-left-color") {
e.style.borderLeftColor = value;
}
else if (name == "border-left-style") {
e.style.borderLeftStyle = value;
}
else if (name == "border-left-width") {
e.style.borderLeftWidth = value;
}
else if (name == "border-right") {
e.style.borderRight = value;
}
else if (name == "border-right-color") {
e.style.borderRightColor = value;
}
else if (name == "border-right-style") {
e.style.borderRightStyle = value;
}
else if (name == "border-right-width") {
e.style.borderRightWidth = value;
}
else if (name == "border-style") {
e.style.borderStyle = value;
}
else if (name == "border-top") {
e.style.borderTop = value;
}
else if (name == "border-top-color") {
e.style.borderTopColor = value;
}
else if (name == "border-top-style") {
e.style.borderTopStyle = value;
}
else if (name == "border-top-width") {
e.style.borderTopWidth = value;
}
else if (name == "border-width") {
e.style.borderWidth = value;
}
else if (name == "bottom") {
e.style.bottom = value;
}
else if (name == "clear") {
e.style.clear = value;
}
else if (name == "clip") {
e.style.clip = value;
}
else if (name == "color") {
e.style.color = value;
}
else if (name == "cssText") {
e.style.Sets = value;
}
else if (name == "cursor") {
e.style.cursor = value;
}
else if (name == "direction") {
e.style.direction = value;
}
else if (name == "display") {
e.style.display = value;
}
else if (name == "font") {
e.style.font = value;
}
else if (name == "font-family") {
e.style.fontFamily = value;
}
else if (name == "font-size") {
e.style.fontSize = value;
}
else if (name == "font-style") {
e.style.fontStyle = value;
}
else if (name == "font-variant") {
e.style.fontVariant = value;
}
else if (name == "font-weight") {
e.style.fontWeight = value;
}
else if (name == "height") {
e.style.height = value;
}
else if (name == "ime-mode") {
e.style.imeMode = value;
}
else if (name == "layout-flow") {
e.style.layoutFlow = value;
}
else if (name == "layout-grid") {
e.style.layoutGrid = value;
}
else if (name == "layout-grid-char") {
e.style.layoutGridChar = value;
}
else if (name == "layout-grid-line") {
e.style.layoutGridLine = value;
}
else if (name == "layout-grid-mode") {
e.style.layoutGridMode = value;
}
else if (name == "layout-grid-type") {
e.style.layoutGridType = value;
}
else if (name == "left") {
e.style.left = value;
}
else if (name == "letter-spacing") {
e.style.letterSpacing = value;
}
else if (name == "line-break") {
e.style.lineBreak = value;
}
else if (name == "line-height") {
e.style.lineHeight = value;
}
else if (name == "list-style") {
e.style.listStyle = value;
}
else if (name == "list-style-image") {
e.style.listStyleImage = value;
}
else if (name == "list-style-position") {
e.style.listStylePosition = value;
}
else if (name == "list-style-type") {
e.style.listStyleType = value;
}
else if (name == "margin") {
e.style.margin = value;
}
else if (name == "margin-bottom") {
e.style.marginBottom = value;
}
else if (name == "margin-left") {
e.style.marginLeft = value;
}
else if (name == "margin-right") {
e.style.marginRight = value;
}
else if (name == "margin-top") {
e.style.marginTop = value;
}
else if (name == "min-height") {
e.style.minHeight = value;
}
else if (name == "overflow") {
e.style.overflow = value;
}
else if (name == "overflow-x") {
e.style.overflowX = value;
}
else if (name == "overflow-y") {
e.style.overflowY = value;
}
else if (name == "padding") {
e.style.padding = value;
}
else if (name == "padding-bottom") {
e.style.paddingBottom = value;
}
else if (name == "padding-left") {
e.style.paddingLeft = value;
}
else if (name == "padding-right") {
e.style.paddingRight = value;
}
else if (name == "padding-top") {
e.style.paddingTop = value;
}
else if (name == "page-break-after") {
e.style.pageBreakAfter = value;
}
else if (name == "page-break-before") {
e.style.pageBreakBefore = value;
}
else if (name == "pixelBottom") {
e.style.pixelBottom = value;
}
else if (name == "pixelHeight") {
e.style.pixelHeight = value;
}
else if (name == "pixelLeft") {
e.style.pixelLeft = value;
}
else if (name == "pixelRight") {
e.style.pixelRight = value;
}
else if (name == "pixelTop") {
e.style.pixelTop = value;
}
else if (name == "pixelWidth") {
e.style.pixelWidth = value;
}
else if (name == "posBottom") {
e.style.posBottom = value;
}
else if (name == "posHeight") {
e.style.posHeight = value;
}
else if (name == "position") {
e.style.position = value;
}
else if (name == "posLeft") {
e.style.posLeft = value;
}
else if (name == "posRight") {
e.style.posRight = value;
}
else if (name == "posTop") {
e.style.posTop = value;
}
else if (name == "posWidth") {
e.style.posWidth = value;
}
else if (name == "right") {
e.style.right = value;
}
else if (name == "ruby-align") {
e.style.rubyAlign = value;
}
else if (name == "ruby-overhang") {
e.style.rubyOverhang = value;
}
else if (name == "ruby-position") {
e.style.rubyPosition = value;
}
else if (name == "scrollbar-3dlight-color") {
e.style.scrollbar3dLightColor = value;
}
else if (name == "scrollbar-arrow-color") {
e.style.scrollbarArrowColor = value;
}
else if (name == "scrollbar-base-color") {
e.style.scrollbarBaseColor = value;
}
else if (name == "scrollbar-darkshadow-color") {
e.style.scrollbarDarkShadowColor = value;
}
else if (name == "scrollbar-face-color") {
e.style.scrollbarFaceColor = value;
}
else if (name == "scrollbar-highlight-color") {
e.style.scrollbarHighlightColor = value;
}
else if (name == "scrollbar-shadow-color") {
e.style.scrollbarShadowColor = value;
}
else if (name == "scrollbar-track-color") {
e.style.scrollbarTrackColor = value;
}
else if (name == "float") {
e.style.styleFloat = value;
}
else if (name == "table-layout") {
e.style.tableLayout = value;
}
else if (name == "text-align") {
e.style.textAlign = value;
}
else if (name == "text-align-last") {
e.style.textAlignLast = value;
}
else if (name == "text-autospace") {
e.style.textAutospace = value;
}
else if (name == "text-decoration") {
e.style.textDecoration = value;
}
else if (name == "textDecorationBlink") {
e.style.textDecorationBlink = value;
}
else if (name == "textDecorationLineThrough") {
e.style.textDecorationLineThrough = value;
}
else if (name == "textDecorationNone") {
e.style.textDecorationNone = value;
}
else if (name == "textDecorationOverline") {
e.style.textDecorationOverline = value;
}
else if (name == "textDecorationUnderline") {
e.style.textDecorationUnderline = value;
}
else if (name == "text-indent") {
e.style.textIndent = value;
}
else if (name == "text-justify") {
e.style.textJustify = value;
}
else if (name == "text-kashida-space") {
e.style.textKashidaSpace = value;
}
else if (name == "text-overflow") {
e.style.textOverflow = value;
}
else if (name == "text-transform") {
e.style.textTransform = value;
}
else if (name == "text-underline-position") {
e.style.textUnderlinePosition = value;
}
else if (name == "top") {
e.style.top = value;
}
else if (name == "unicode-bidi") {
e.style.unicodeBidi = value;
}
else if (name == "vertical-align") {
e.style.verticalAlign = value;
}
else if (name == "visibility") {
e.style.visibility = value;
}
else if (name == "white-space") {
e.style.whiteSpace = value;
}
else if (name == "width") {
e.style.width = value;
}
else if (name == "word-break") {
e.style.wordBreak = value;
}
else if (name == "word-spacing") {
e.style.wordSpacing = value;
}
else if (name == "word-wrap") {
e.style.wordWrap = value;
}
else if (name == "writing-mode") {
e.style.writingMode = value;
}
else if (name == "z-index") {
e.style.zIndex = value;
}
else if (name == "zoom") {
e.style.zoom = value;
}
}
catch (e) {
/* ignore error on attempt to set e.style.[property] */
}
}
}
}
_application/x-javascriptObplist00ijX$versionX$objectsY$archiverT$top "()012LMNOPQRSTUVWXYZ[\]^_cdU$null
!R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1 #$%&[NS.relativeWNS.base _:http://bssa.geoscienceworld.org/javascript/ajax/utility.js*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#AB+13456AWNS.keysZNS.objects789:;<=>?@
BC@EFGHIJKVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-Length_X-Highwire-SessionidTEtagZKeep-Alive_0Apache/1.3.26 (Unix) DAV/1.0.3 ApacheJServ/1.1.2Ubytes_application/x-javascript_Sun, 11 Jul 2010 00:05:00 GMT_Thu, 27 Apr 2006 16:07:56 GMTU14971^durt1pmrs1.JS1_"1454e-3a7b-4450ec5c"Ztimeout=15*+`a_NSMutableDictionary`b/\NSDictionary:{*+ef_NSHTTPURLResponsegh/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverkl_WebResourceResponse # - 2 7 Y _ z } "-6<?ENWY`hsu)\b}!$)=AUcux m _:http://bssa.geoscienceworld.org/javascript/ajax/utility.js +,-.O /*****************************************************************************
* javascript/entrez/callback.js
*
* Entrez Linking callback to populate content box.
*
* Copyright 2006 Board of Trustees of the Leland Stanford Junior University.
****************************************************************************/
/*
* Execute callback to fill content box with Entrez Linking information.
*/
function entrez_callback(pmid, callback_url) {
/*
* MSIE 5.5 and below have issues with the JavaScript
* used for Entrez Linking. For now we have to disable
* the callback until we can track down a proper fix
* (or everybody sanely upgrades to version 6 or 7!).
*/
if (navigator) {
var appname = navigator.appName;
if (appname == "Microsoft Internet Explorer") {
var userAgent = navigator["userAgent"];
var s = "MSIE ";
var n = -1;
if ((n = userAgent.indexOf(s)) != -1) {
var v = parseFloat(userAgent.substring(n+s.length));
if (v < 6) {
return;
}
}
}
}
/*
* Acquire table row element to update, initiate callback
* to update table with Entrez Links.
*/
var tr = document.getElementById('entrez_callback_'+pmid);
if (!tr) {
return;
}
var req = new XMLHttpRequest();
if (!req) {
return;
}
req.onreadystatechange = function() {
if (req.readyState == 4 && (req.status == 200 || req.status == 304)) {
var src = req.responseXML.documentElement;
var dst = document.createDocumentFragment();
for (var i = 0; i < src.childNodes.length; i++) {
copy_xml_to_html(src.childNodes[i], dst);
}
var tbl = tr.parentNode;
tbl.replaceChild(dst, tr);
}
}
req.open('GET', callback_url, true);
req.send(null);
}
_application/x-javascriptObplist00ijX$versionX$objectsY$archiverT$top "()012LMNOPQRSTUVWXYZ[\]^_cdU$null
!R$6S$10R$2R$7R$3S$11R$8V$classR$4R$9R$0R$5R$1 #$%&[NS.relativeWNS.base _=http://bssa.geoscienceworld.org/javascript/entrez/callback.js*+,-Z$classnameX$classesUNSURL./UNSURLXNSObject#AB+i3456AWNS.keysZNS.objects789:;<=>?@
BC@EFGHIJKVServer]Accept-RangesZConnection\Content-TypeTDate]Last-Modified^Content-Length_X-Highwire-SessionidTEtagZKeep-Alive_0Apache/1.3.26 (Unix) DAV/1.0.3 ApacheJServ/1.1.2Ubytes_application/x-javascript_Sun, 11 Jul 2010 00:05:00 GMT_Thu, 27 Apr 2006 17:39:26 GMTT1792^durt1pmrs1.JS1_"cd2b-700-445101ce"Ztimeout=15*+`a_NSMutableDictionary`b/\NSDictionary *+ef_NSHTTPURLResponsegh/_NSHTTPURLResponse]NSURLResponse_NSKeyedArchiverkl_WebResourceResponse # - 2 7 Y _ z } %09?BHQZ\ckvx!,_e!$)=AUcux m _=http://bssa.geoscienceworld.org/javascript/entrez/callback.js 0123O GIF89a ( P& >'8N"" b0(-y;
N&L%J$e1 A
&:I# 3
\h./;=QI 57b+M"$<Z(P#]- RHH[(m04}7n1`*])6%N?;s3Ox5
Kg-BMI>Z, Pa+J*X'O:JCr2,i.DQ$C H R$
k/])J!2F
V&U) L!M[, L=c,G J LU&e->U%3g2QKFA^)NBAM:l0C=_*. X+ Ni3G*@z6>IC>m5:DEF!@f!S%Ej3@
CXYs2F"
Z\)\\, u4DG8Pf-j/<T) <w4O{6+j4k4BT%t3^- QGA_. D:U R'W&M9`/
q2B9IEZ+ GW* V'o6DKN%4[E8JIJ01C>
o1;VM?{@@9a0
FGd,e,Q|7KBZ[F=_/
y5;O?p1D `,H9W R! , ( H*\x QРa5k*PA*5D
lI@ b!J@8!)"f1q !;]ZHիXj
`ÊP]/J
``K7kmtʷ߿胮am1L@0&m̹3`VLf#Ǻx"Fb۸s,#_?N([.uKX3aÝaӫ-*h)MM.`ctuz&XfkeA6 x1!7bA!pqX-Ca-i6XNtXY$@A ېEAU?4F)`PA
A
;5e_XP4A,
2XPJ)g
AXdDlAc
A#5,dsP
c眔~6dmPAlΉ@0777PXaP my0d(LZ[
& YDAP}YKX
Y JՁb+Z5dpdIqe$@/łU-A m&4d%rPdXa0dP)C|
F Y)YUd9V
vL2%D YZF