tmpCount = '100'; tmpStart = Number(document.forms[0].Start.value); tmpLast = tmpStart+tmpCount; tmpType = document.forms[0].PageType.value; tmpElements = viewResults.length - 1; //alert(tmpElements); if ( tmpLast > (tmpStart + tmpElements) ) { tmpLast = tmpStart + tmpElements; } //1 - docID //2 - Distinctive Title //3 - Edition Statement //4 - Lead Author //5 - Publication Date //6 - ISBN //7 - Price //8 - Publisher Name //9 - Imprint or Binding //10 - Summary (Abstract if it exists otherwise first 300 chars of Main Description) //11 - parentID //12 - BIC Main Subject Code //13 - Subject //14 - Area //15 - Series if (currentPageType == "onixProduct") // add shopping cart summary { document.write('

'); document.write('
Number of items in cart:
'); document.write('
Current total:
'); document.write('

'); document.write('
'); document.write('

'); document.write('
Information about orderingSecure Site Information

'); getSummary(); } document.write('
'); document.write('
',unescape(document.forms[0].Label.value).replace(/\+/g,' '),'
'); for (var j = tmpStart; j < tmpLast; j++) { if (typeof(viewResults[j]) != 'undefined') { document.write('
',unescape(viewResults[j].viewCol2),'
'); } } document.write('
');