if ((document.forms[0].PageType.value=="index" || document.forms[0].PageType.value=="home") && unescape(document.forms[0].Section.value)!="Product Reviews") { tmpCount = Number(document.forms[0].Count.value); tmpStart = Number(document.forms[0].Start.value); tmpLast = tmpStart+tmpCount; tmpType = document.forms[0].PageType.value; tmpElements = viewResults.length - 1; var currentType = unescape(document.forms[0].Type.value); var currentCat = unescape(document.forms[0].Cat.value); // next / previous if (viewResults.length > tmpStart+(tmpCount-1) || tmpStart > 1) { document.write('
'); document.write(''); document.write(''); document.write('
'); // previous if (tmpStart > 1) { document.write('<< Previous'); } document.write('  '); // next if (viewResults.length > tmpStart+(tmpCount-1)) { document.write('Next >>'); } document.write('
'); } }