//    <!-- Made by Bo Bramsing, 2004, bo@ktbb.dk. Copyright 2004. All rights reserved -->

/**
 * Writes javascript includes into the document,
 * dependend on the imput.
 *
 * Input:
 *  IncludeSelect: A bit mask of which files to include. Please see below.
 */
function IncludeJSWithSelect(IncludeSelect,rootPath)
{
  if (IncludeSelect & 0x00000001)
    document.write('<SCRIPT language="JavaScript" src="'+rootPath+'js/menu.js"  type=text/javascript></SCRIPT>');
  if (IncludeSelect & 0x00000002)
    document.write('<SCRIPT language="JavaScript" src="'+rootPath+'js/dropdown.js"  type=text/javascript></SCRIPT>');
  if (IncludeSelect & 0x00000004)
    document.write('<SCRIPT language="JavaScript" src="'+rootPath+'js/browser.js"  type=text/javascript></SCRIPT>');
  if (IncludeSelect & 0x00000008)
    document.write('<SCRIPT language="JavaScript" src="'+rootPath+'js/clock.js"  type=text/javascript></SCRIPT>');
  if (IncludeSelect & 0x00000010)
    document.write('<SCRIPT language="JavaScript" src="'+rootPath+'js/add.js"  type=text/javascript></SCRIPT>');
  if (IncludeSelect & 0x00000020)
    document.write('<SCRIPT language="JavaScript" src="'+rootPath+'js/misc.js"  type=text/javascript></SCRIPT>');
} /* IncludeJSWithSelect */


