
function makepagenav(n) {
// Outputs the HTML to generate the page nav

document.write('<table width="393" border="0" cellspacing="0" cellpadding="0">');
document.write('  <tr>');
document.write('    <td width="343"><table width="343" border="0" cellpadding="0" cellspacing="0" class="bodycopy">');
document.write('        <tr>');
document.write('          <td width="343"><div class="bodycopy" id="client2">' +  theMenu[n-1][0] + '</div></td>');
document.write('        </tr>');
document.write('        <tr>');
document.write('            <td width="343"> ');
var i;
for (i=1;i <= theMenu.length; i++){
    if (i != n) {
    document.write('         <a href="' + theMenu[i-1][1] + '"   ');
    document.write('            onMouseOver="MM_setTextOfLayer(\'client2\',\'\',\'' +  theMenu[i-1][0] + '\')" ');
    document.write('            onMouseOut="MM_setTextOfLayer(\'client2\',\'\',\'' +  theMenu[n-1][0] + '\')" ');
    document.write('          >' + i + '</a> ');
    }
    else
    {
    document.write( i + ' ');
    }
}
document.write('            </td>');
document.write('        </tr>');
document.write('    </table></td>');
document.write('    <td width="50" valign="top">');
if (n > 1) {
document.write('<a href="' + theMenu[n-1-1][1] + '" ');
document.write('    onMouseOut="MM_swapImgRestore()" ');
document.write('    onMouseOver="MM_swapImage(\'View_PREV\',\'\',\'/img/misc/left_arrow2.gif\',1)"><img');
document.write('    src="/img/misc/left_arrow.gif" alt="View previous" ');
document.write('    name="View_PREV" width="25" height="17" border="0"></a>');
}
else
{
    // Do Spacer image!
document.write('<img');
document.write('    src="/img/spacer.gif" alt="" ');
document.write('    name="View_PREV" width="25" height="17" border="0">');

}
if (n < theMenu.length) {
document.write('<a href="' + theMenu[n+1-1][1] + '" ');
document.write('    onMouseOut="MM_swapImgRestore()" ');
document.write('    onMouseOver="MM_swapImage(\'View_NEXT\',\'\',\'/img/misc/right_arrow2.gif\',1)"><img ');
document.write('    src="/img/misc/right_arrow.gif" alt="View next" name="View_NEXT"');
document.write('    width="25" height="17" border="0"></a>');
}
else
{
    // Do Spacer image!
     document.write('<img');
    document.write('    src="/img/spacer.gif" alt="" ');
    document.write('    name="View_NEXT" width="25" height="17" border="0">');
}
document.write('</td>');
document.write('  </tr>');
document.write('</table>');


}


