/******************************************************************************
* This file defines the tree menu with it's items and submenus.               *
******************************************************************************/

// User-defined tree menu data.

var treeMenu           = new TreeMenu();  // This is the main menu.
var treeMenuName       = "myMenu_7.0";    // Make this unique for each tree menu.
var treeMenuDays       = 7;               // Number of days to keep the cookie.
var treeMenuFrame      = "menuFrame";     // Name of the menu frame.
var treeMenuImgDir     = "graphics/"      // Path to graphics directory.
var treeMenuBackground = "";              // Background image for menu frame.   
var treeMenuBgColor    = "#ffffff";       // Color for menu frame background.   
var treeMenuFgColor    = "#000000";       // Color for menu item text.
var treeMenuHiBg       = "#008080";       // Color for selected item background.
var treeMenuHiFg       = "#ffffff";       // Color for selected item text.
var treeMenuFont       = 
      "MS Sans Serif,Arial,Helvetica";    // Text font face.
var treeMenuFontSize   = 3;               // Text font size.
var treeMenuRoot       = "Health Care Product Shopping : Health Information Systems";     // Text for the menu root.
var treeMenuFolders    = 1;               // Sets display of '+' and '-' icons.
var treeMenuAltText    = true;            // Use menu item text for icon image ALT text.

// Define the items for the top-level of the tree menu.
treeMenu.addItem(new TreeMenuItem("Medical Informatics"));
treeMenu.addItem(new TreeMenuItem("Consumer Health Informatics"));



// Medical Informatics submenu.

var asp = new TreeMenu();
asp.addItem(new TreeMenuItem("Integrated Delivery Systems", "his1.htm", "_top"));
asp.addItem(new TreeMenuItem("Clinical Components"));
asp.addItem(new TreeMenuItem("Clinical Specialty Specific Solutions"));
asp.addItem(new TreeMenuItem("Clinical Setting Specific Solutions"));
asp.addItem(new TreeMenuItem("Operational and Financial Components"));
asp.addItem(new TreeMenuItem("Technical Components"));
asp.addItem(new TreeMenuItem("Databases", "/Telemedical/data.html", "_top"));
asp.addItem(new TreeMenuItem("Publications", "/Telemedical/Library/books.htm", "_top"));
asp.addItem(new TreeMenuItem("Outsourcing Services and Consultants", "/Telemedical/Products/his6.htm", "_top"));
asp.addItem(new TreeMenuItem("Healthcare Information Networks", "his30.htm", "_top"));
treeMenu.items[0].makeSubmenu(asp);





//  Clinical Informatics submenu.

var chi = new TreeMenu();
chi.addItem(new TreeMenuItem("ALL", "/Telemedical/Products/cons.html", "_top"));
chi.addItem(new TreeMenuItem("Healthcare Portals", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=Portal", "_top"));
chi.addItem(new TreeMenuItem("Personal Health Records", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=Personal", "_top"));
chi.addItem(new TreeMenuItem("Online Healthcare News", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=News", "_top"));
chi.addItem(new TreeMenuItem("Symptom and Disease Reference", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=Reference", "_top"));
chi.addItem(new TreeMenuItem("Medical Device Reference", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=Device", "_top"));
chi.addItem(new TreeMenuItem("Medical Procedure Reference", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=Procedure", "_top"));
chi.addItem(new TreeMenuItem("Medical Dictionary", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=dictionary", "_top"));
chi.addItem(new TreeMenuItem("Healthcare Directory", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=directory", "_top"));
chi.addItem(new TreeMenuItem("Wellness Programs", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=wellness", "_top"));
chi.addItem(new TreeMenuItem("eCommerce", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=ecommerc", "_top"));
chi.addItem(new TreeMenuItem("Decision Support Systems", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=decisionsupport", "_top"));
chi.addItem(new TreeMenuItem("Communication Services", "https://www.digmed.com/CTODOCS/chiv2.cfm?company=&product=&solution=yes&categories=communication", "_top"));
treeMenu.items[1].makeSubmenu(chi);


// Clinical components sub-submenu.

var clin = new TreeMenu();
clin.addItem(new TreeMenuItem("Electronic Medical Record Systems", "emr.html","_top"));
clin.addItem(new TreeMenuItem("Patient Monitoring System", "telmeds.html","_top"));
clin.addItem(new TreeMenuItem("Expert / Decision Support Systems", "his9.htm","_top"));
clin.addItem(new TreeMenuItem("Critical Paths and Case Management", "his10.htm","_top"));
clin.addItem(new TreeMenuItem("Outcomes Predictor and Severity of Illness Grouping", "his13.htm","_top"));
clin.addItem(new TreeMenuItem("Coding System", "his15.htm","_top"));
clin.addItem(new TreeMenuItem("Clinical Data Repositories", "his17.htm","_top"));
clin.addItem(new TreeMenuItem("Patient Care Systems", "his2.htm","_top"));


asp.items[1].makeSubmenu(clin);


// Specialty Specific systems sub-submenu.

var ss = new TreeMenu();

ss.addItem(new TreeMenuItem("Laboratory Systems", "https://www.digmed.com/CTODOCS/clinlab.cfm", "_top"));
ss.addItem(new TreeMenuItem("Pharmacy Systems", "https://www.digmed.com/CTODOCS/pims.cfm", "_top"));
ss.addItem(new TreeMenuItem("Cardiology Information System", "his28.htm","_top"));
ss.addItem(new TreeMenuItem("Anesthesiology Information System", "his27.htm","_top"));
ss.addItem(new TreeMenuItem("Dental Information System", "his21.htm", "_top"));
ss.addItem(new TreeMenuItem("Radiology Information System", "https://www.digmed.com/ctodocs/risb.cfm", "_top"));
ss.addItem(new TreeMenuItem("Ophthalmology Information System", "https://www.digmed.com/ctodocs/oisb.cfm", "_top"));

asp.items[2].makeSubmenu(ss);


// Clinical setting sub-submenu.

var cs = new TreeMenu();

cs.addItem(new TreeMenuItem("Home Health Care", "homecare.htm", "_top"));

cs.addItem(new TreeMenuItem("Clinics", "his8.htm", "_top"));

cs.addItem(new TreeMenuItem("Critical Care Units", "his5.htm", "_top"));


cs.addItem(new TreeMenuItem("Long term care facilities", "his25.htm", "_top"));

cs.addItem(new TreeMenuItem("Emergency Rooms ", "ers.htm", "_top"));

asp.items[3].makeSubmenu(cs);


// Operational and Financial systems sub-submenu.

var os = new TreeMenu();

os.addItem(new TreeMenuItem("Practice Management Systems", "https://www.digmed.com/CTODOCS/pracman.cfm", "_top"));
os.addItem(new TreeMenuItem("Managed Care Systems", "his3.htm", "_top"));
os.addItem(new TreeMenuItem("Quality Monitoring", "his32.htm", "_top"));
os.addItem(new TreeMenuItem("Elegibility Verification", "his29.htm", "_top"));
os.addItem(new TreeMenuItem("Executive information Systems", "his31.htm", "_top"));
os.addItem(new TreeMenuItem("Purchasing System", "his26.htm", "_top"));
os.addItem(new TreeMenuItem("Human Resource Management System", "his23.htm", "_top"));
os.addItem(new TreeMenuItem("Facilities Management", "his22.htm", "_top"));
os.addItem(new TreeMenuItem("Market Analysis System", "his24.htm", "_top"));
os.addItem(new TreeMenuItem("Claims Administration", "his7.htm", "_top"));
os.addItem(new TreeMenuItem("Contract Management", "his4.htm", "_top"));
os.addItem(new TreeMenuItem("Financial Information System", "his34.htm", "_top"));
os.addItem(new TreeMenuItem("Materials Management", "his35.htm", "_top"));

asp.items[4].makeSubmenu(os);


// Technical components systems sub-submenu.

var tc = new TreeMenu();
tc.addItem(new TreeMenuItem("Master Patient Index Systems", "his33.htm", "_top"));
tc.addItem(new TreeMenuItem("Voice Recognition Products", "voicer.htm", "_top"));
tc.addItem(new TreeMenuItem("Scheduling Systems", "his36.htm", "_top"));
tc.addItem(new TreeMenuItem("System Integration Engine or Service", "his19.htm", "_top"));
tc.addItem(new TreeMenuItem("Telemedicine Systems", "telmeds.html", "_top"));

tc.addItem(new TreeMenuItem("Electronic Data Interchange", "edi.htm", "_top"));



asp.items[5].makeSubmenu(tc);




