JavaScript for tabbing to other Blogs

Control Links

By using a simple numbering of the published Blogs, some JavaScript can be used to determine the Previous/Next web addresses for adjacent Blogs: Prev/Next Blog Controls Links: o Prev: javascript: document.location.href = ("00000" + (parseInt(document.location.href.split('/').pop().substr (0,5)) - 1)).substr(1,5) + '.htm'; o Next: javascript: document.location.href = ("00000" + (parseInt(document.location.href.split('/').pop().substr (0,5)) + 1)).substr(1,5) + '.htm';