function SetSelected(XFileName)
{
  var MyReturn = '';

  if (LCFileName == XFileName)
  {
    MyReturn = 'selected ';
  }
  return MyReturn;
}

document.write('<table class="screen-only" style="background-color: #FFFFFF;" align="right" border="0" cellpadding="0" cellspacing="0">');
document.write('  <tr valign="top">');
document.write('    <td>');
document.write('      <p class="notetext01 p0000"><b>Choose a Category:</b></p>');
document.write('      <form class="screen-only" action="" method="post" name="form">');
document.write('      <select name="GoTo" size="1" onChange="window.location=this.value;">');

document.write('        <option '+SetSelected('banking')+'value="'+ScriptsBase+'../links/banking.html">Banking Institutions</option>');

document.write('        <option '+SetSelected('icafe')+'value="'+ScriptsBase+'../links/icafe.html">Internet Cafe Links</option>');

document.write('        <option '+SetSelected('newspaus')+'value="'+ScriptsBase+'../links/newspaus.html">Newspapers - Australia</option>');

document.write('        <option '+SetSelected('searchg')+'value="'+ScriptsBase+'../links/searchg.html">Search Engines - General</option>');

document.write('        <option '+SetSelected('searchs')+'value="'+ScriptsBase+'../links/searchs.html">Search Engines - Special</option>');

document.write('        <option '+SetSelected('webmail')+'value="'+ScriptsBase+'../links/webmail.html">Webmail Providers</option>');

document.write('      </select>');
document.write('      </form></td>');
document.write('  </tr>');
document.write('</table>');
