// *********************************************************************
//
//  File:       freehand.js
//  Purpose:    Holds common JavaScript code for Freehand Help System
//
//  Copyright:  © SFI (UK) Limited 2009
//
// *********************************************************************

function add_li(list, text) {
var list = document.getElementById(list);
var li = document.createElement("li");
li.innerHTML = text;
list.appendChild(li);
}

function fill_menus(list) {
add_li("listindex","<a href='fhcm-page4.html'>Introduction</a>");
add_li("listindex","<a href='fhcm-page5.html'>Features</a>");
add_li("listindex","<a href='fhcm-page6.html'>Benefits</a>");
add_li("listindex","<a href='fhcm-page7.html'>Versions</a>");
add_li("listindex","<a href='fhcm-page8.html'>Demonstration Download</a>");
add_li("listindex","<a href='fhcm-demo-hints.html'>Demonstration Hints</a>");
add_li("listindex","<a href='fhcm-demo-hints.html'>Internet Diary</a>");
}

