			/* handle the paging */
			var currentPage = 1;
			$(document).ready(function() {
				$("a.webpage").click(function () {
					if ($(this).attr("id") == "next") {
						/* you clicked next */
						currentPage++;
						if ($("#table" + currentPage).length) { /* trick to tell if element exists */
							$("#quoted-nav a").css("color","#0d4a73");
							$("#page" + currentPage).css("color","black");
							$("#quoted-nav a").css("font-size","12px"); /* reset all to default */
							$("#page" + currentPage).css("font-size","15px");
							$("#quoted table").hide();
							$("#table" + currentPage).show();
						}
					} else {
						/* you've clicked a number */
						pageNum = $(this).attr("id").substring(7);
						/* pull out id="webpage5" on the link, turn on the right page, increment current page */
						$("tr.websection").hide();
						$("a.webpage").css("color","#0d4a73"); /* reset all to default */
						$(this).css("color","black");
						$("a.webpage").css("font-size","12px"); /* reset all to default */
						$(this).css("font-size","15px");
						$("tr.websection" + pageNum).show();
					}
					//return false;
				});

				$("a.prpage").click(function () {
					if ($(this).attr("id") == "next") {
						/* you clicked next */
						currentPage++;
						if ($("#table" + currentPage).length) { /* trick to tell if element exists */
							$("#quoted-nav a").css("color","#0d4a73");
							$("#page" + currentPage).css("color","black");
							$("#quoted-nav a").css("font-size","12px"); /* reset all to default */
							$("#page" + currentPage).css("font-size","15px");
							$("#quoted table").hide();
							$("#table" + currentPage).show();
						}
					} else {
						/* you've clicked a number */
						pageNum = $(this).attr("id").substring(6);
						/* pull out id="webpage5" on the link, turn on the right page, increment current page */
						$("tr.prsection").hide();
						$("a.prpage").css("color","#0d4a73"); /* reset all to default */
						$(this).css("color","black");
						$("a.prpage").css("font-size","12px"); /* reset all to default */
						$(this).css("font-size","15px");
						$("tr.prsection" + pageNum).show();
					}
					//return false;
				});
			});


function MM_openBrWindow(theURL,winName,features) { //v2.0
		  window.open(theURL,winName,features);
		}

