<!--

  var webID = "VSASITE";
  var host = "";
  var sslhost = "";
  var imgPathURL = "/vsasite_files/images/";
  var vertMenuOffsetY = 28;
  var vertMenuOffsetX = 1;
  var horizMenuOffsetY = 5;
  var horizMenuOffsetX = 149;

// Show Date

  var today = new Date()
  var time = today.getTime();
  var dayOfMonth = today.getDate();
  var dayOfWeek = today.getDay();
  var hour = today.getHours();
  var minutes = today.getMinutes();
  var monthOfYear = today.getMonth();
  var yearPast = today.getYear();
 
  var month
  if (monthOfYear == "0") {
     month = "January";
  }
  if (monthOfYear == "1") {
     month = "February";
  }
  if (monthOfYear == "2") {
     month = "March";
  }
  if (monthOfYear == "3") {
     month = "April";
  }
  if (monthOfYear == "4") {
     month = "May";
  }
  if (monthOfYear == "5") {
     month = "June";
  }
  if (monthOfYear == "6") {
     month = "July";
  }
  if (monthOfYear == "7") {
     month = "August";
  }
  if (monthOfYear == "8") {
     month = "September";
  }
  if (monthOfYear == "9") {
     month = "October";
  }
  if (monthOfYear == "10") {
     month = "November";
  }
  if (monthOfYear == "11") {
     month = "December";
  }

  var year
  year = yearPast
  if (year <= 200) {
    year = year + 1900;
  }

  function showGreeting () {
     document.write(month + " " + dayOfMonth +  ", " + year); 
  }

  function browserSupportsMenu(){
      var agt=navigator.userAgent.toLowerCase(); 
      var is_minor = parseFloat(navigator.appVersion); 
      var is_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
      if (document.all || document.getElementById) return true;
      if (document.layers && is_minor >= 4.7 && is_win) return true;
      return false;
  }

  function showVertMenu(event,tipName,mo,position,x,y){
    var tipTitle = '';  // For menus, tipTitle is always an empty string
    var tipAnchor = null; // This menu is not being positioned relative to an anchor <a name=...> tag so set it to null.
    var tipBody = mo; // mo is a text string created using a series of makeDZTextMenuItem function calls and goes as the tip body.

    if (!browserSupportsMenu()) return;
    showDZTip(event,tipName,tipTitle,tipBody,tipAnchor,'parentmenuitem',vertMenuOffsetX,vertMenuOffsetY);
  }

  function showMenu(event,tipName,mo,position,x,y){
    var tipTitle = '';  // For menus, tipTitle is always an empty string
    var tipAnchor = null; // This menu is not being positioned relative to an anchor <a name=...> tag so set it to null.
    var tipBody = mo; // mo is a text string created using a series of makeDZTextMenuItem function calls and goes as the tip body.

    if (!browserSupportsMenu()) return;

    if (position == 'flash') {
        showDZTip(event,tipName,tipTitle,tipBody,'flashAnchor','relative',x,y);
        return;
    }

    if (position == null) {
      /* showDZTip is defined in dzTip6.js */
      var windowWidth = window.document.body.clientWidth;
      var pTip = getDZTipElement(getDZTipElement(tipName).dzParentName);
      var  l = getDZOffset(pTip.currentMenuItem, "Left");
      var wd = parseInt(horizMenuOffsetX * 2) + parseInt(l);
      if (wd - windowWidth > 0) {
        showDZTip(event,tipName,tipTitle,tipBody,tipAnchor,'parentmenuitem',horizMenuOffsetX*-1,horizMenuOffsetY);
      } else {
        showDZTip(event,tipName,tipTitle,tipBody,tipAnchor,'parentmenuitem',horizMenuOffsetX,horizMenuOffsetY);
      }
    } else {
      showDZTip(event,tipName,tipTitle,tipBody,tipAnchor,'relative',0,34);
    }        
  }

// function makeDZTextMenuItem(className,itemText,link,tipMouseOverFunc,tipMouseOutFunc,imgAttributes,spacerHeight)
// function initDZTip(tipName, tipType, borderWidth, maxWidth, minWidth, parentName, className, showDelay, hideDelay, leftMargin, topMargin)

  var mm = initDZTip('MainMenu','hmenu',1,null,null,null,null,null,null,0,0);  //Menu
  mm.neverHide = true;
  mm.dzHideDelay=100;
  mm.dzShowDelay=0;

  initDZTip('TAB1','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB1_VSA','vmenu',0,null,null,'TAB1',null,10,130,50,100);
  function showSubMenu_TAB1_VSA(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/VSA/RBV/>Roster Billing Vaccinations</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/VSA/IMP/>Implementation</a>',null,null,null,null,null);
    
    showMenu(event,'TAB1_VSA',mo);
  }

  initDZTip('TAB1_SHM','vmenu',0,null,null,'TAB1',null,10,130,50,100);
  function showSubMenu_TAB1_SHM(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/SHM/SHM/>HFA\'s SHM Program</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/SHM/SHMHR/>Historical Results</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/SHM/SHMCC/>Cost & Containment</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/SHM/SHMCN/>Coporate Name</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/SHM/SHMB&SS/>Benefits & Scope of Service</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/SHM/SHMES/>SHM & Employee Signup</a>',null,null,null,null,null);
    
    showMenu(event,'TAB1_SHM',mo);
  }

  initDZTip('TAB1_TECH','vmenu',0,null,null,'TAB1',null,10,130,50,100);
  function showSubMenu_TAB1_TECH(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/TECH/CSE/>Cholesterol Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/TECH/OSE/>Osteoporosis Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/TECH/PF/>Pulmonary Function Screening</a>',null,null,null,null,null);
    
    showMenu(event,'TAB1_TECH',mo);
  }

  initDZTip('TAB1_EMPL','vmenu',0,null,null,'TAB1',null,10,130,50,100);
  function showSubMenu_TAB1_EMPL(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/EMPL/AK/>Alan Kohll</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/EMPL/KE/>Kim Elsberry</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/EMPL/KD/>Keith Dudney</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/EMPL/RK/>Ron Knudson</a>',null,null,null,null,null);
    
    showMenu(event,'TAB1_EMPL',mo);
  }

  function showSubMenu_TAB1(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/PRI/>Privacy</a>',host + "/AboutUs/PRI/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/ES/>Executive Summary</a>',host + "/AboutUs/ES/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/VSA/>Vaccination Services</a>',host + "/AboutUs/ES/","showSubMenu_TAB1_VSA(event)","hideDZTip('TAB1_VSA')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/SHM/>Strategic Health Management</a>',null,"showSubMenu_TAB1_SHM(event)","hideDZTip('TAB1_SHM')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/TECH/>Technology</a>',null,"showSubMenu_TAB1_TECH(event)","hideDZTip('TAB1_TECH')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/EMPL/>Staff Bios</a>',null,"showSubMenu_TAB1_EMPL(event)","hideDZTip('TAB1_EMPL')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' +  'http://sm.vsamerica.com target=_blank>Contact Us</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/CI/>Contact Information</a>',host + "/AboutUs/CI/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/VIPEXPRESS/>VIP Express</a>',host + "/AboutUs/VIPEXPRESS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/TESTIMONIALS/>Testimonials</a>',host + "/AboutUs/TESTIMONIALS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/BLOG/>VSA Blogs</a>',host + "/AboutUs/BLOG/",null,null,null,null);
    
    showVertMenu(event,'TAB1',mo);
  }

  initDZTip('TAB2','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB2_POS','vmenu',0,null,null,'TAB2',null,10,130,50,100);
  function showSubMenu_TAB2_POS(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/HealthFairs/POS/OES/>Online Employeesignup</a>',null,null,null,null,null);
    
    showMenu(event,'TAB2_POS',mo);
  }

  function showSubMenu_TAB2(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/HealthFairs/POS/>Product Options & Services</a>',host + "/AboutUs/BLOG/","showSubMenu_TAB2_POS(event)","hideDZTip('TAB2_POS')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/HealthFairs/OES/>Online Employeesignup</a>',host + "/HealthFairs/OES/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/HealthFairs/CSR/>Cost Savings or Reduction</a>',host + "/HealthFairs/CSR/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/HealthFairs/REP/>Reporting</a>',host + "/HealthFairs/REP/",null,null,null,null);
    
    showVertMenu(event,'TAB2',mo);
  }

  initDZTip('TAB3','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB3_FS','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_FS(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FS/WTGFS/>When to Get Flu Shots</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FS/WSGAFS/>Who Should Get a Flu Shot</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FS/NGAFS/>Who Should Not Get a Flu Shot</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FS/VYI/>A Vaccine You Inhale</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FS/SFW/>Safety for Women</a>',null,null,null,null,null);
    
    showMenu(event,'TAB3_FS',mo);
  }

  initDZTip('TAB3_YFS','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_YFS(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/YFS/WDINAFS/>Why Do I Need a Flu Shot Every Year</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/YFS/SE/>Side Effects</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/YFS/WIGS/>Will I Get Sick</a>',null,null,null,null,null);
    
    showMenu(event,'TAB3_YFS',mo);
  }

  initDZTip('TAB3_FF','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_FF(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FF/WITF/>What is The Flu</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FF/FS/>Flu Symptoms</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FF/SF/>Stomach Flu</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FF/HLAIC/>How Long am I Contagious</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FF/PT/>Prevention & Treatment</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FF/WFS/>Worst Flu Seasons</a>',null,null,null,null,null);
    
    showMenu(event,'TAB3_FF',mo);
  }

  initDZTip('TAB3_FSM','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_FSM(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FSM/CONSENT/>Consent and Release</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FSM/MED/>Medicare</a>',null,null,null,null,null);
    
    showMenu(event,'TAB3_FSM',mo);
  }

  function showSubMenu_TAB3(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FS/>Flu Shots</a>',host + "/HealthFairs/REP/","showSubMenu_TAB3_FS(event)","hideDZTip('TAB3_FS')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/YFS/>Yearly Flu Shots</a>',null,"showSubMenu_TAB3_YFS(event)","hideDZTip('TAB3_YFS')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FF/>Flu Facts</a>',null,"showSubMenu_TAB3_FF(event)","hideDZTip('TAB3_FF')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FSM/>Flu Shot Materials</a>',null,"showSubMenu_TAB3_FSM(event)","hideDZTip('TAB3_FSM')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/FluShots/FLUSHOTNEWS/>Flu Shot News</a>',host + "/FluShots/FLUSHOTNEWS/",null,null,null,null);
    
    showVertMenu(event,'TAB3',mo);
  }

  initDZTip('TAB4','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB4_OS','vmenu',0,null,null,'TAB4',null,10,130,50,100);
  function showSubMenu_TAB4_OS(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/CH/>Cholesterol Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/CAU/>Carotid Artery Ultrasound</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/BP/>Blood Pressure Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/DIAB/>Diabetes Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/HEM/>Hemoglobin Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/OST/>Osteoporosis Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/PF/>Pulmonary Function</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/CS/>Cardiovascular Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/HE/>Hearing Education</a>',null,null,null,null,null);
    
    showMenu(event,'TAB4_OS',mo);
  }

  initDZTip('TAB4_BLT','vmenu',0,null,null,'TAB4',null,10,130,50,100);
  function showSubMenu_TAB4_BLT(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/BLT/CBC/>Complete Blood Count</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/BLT/PSA/>Prostate-Specific Antigen</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/BLT/TP/>Thyroid Panel</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/BLT/HOM/>Homocysteine</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/BLT/CRP/>C-Reactive Protein</a>',null,null,null,null,null);
    
    showMenu(event,'TAB4_BLT',mo);
  }

  initDZTip('TAB4_IMM','vmenu',0,null,null,'TAB4',null,10,130,50,100);
  function showSubMenu_TAB4_IMM(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/IMM/TD/>Tetanus/Diphtheria Shot</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/IMM/HB/>Hepatitis B Shot</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/IMM/PP/>Pneumococcal Polysaccharide</a>',null,null,null,null,null);
    
    showMenu(event,'TAB4_IMM',mo);
  }

  initDZTip('TAB4_TECH','vmenu',0,null,null,'TAB4',null,10,130,50,100);
  function showSubMenu_TAB4_TECH(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/TECH/CS/>Cholesterol Screening</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/TECH/OS/>Osteoporosis Screening</a>',null,null,null,null,null);
    
    showMenu(event,'TAB4_TECH',mo);
  }

  function showSubMenu_TAB4(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OS/>Onsite Screening</a>',host + "/FluShots/FLUSHOTNEWS/","showSubMenu_TAB4_OS(event)","hideDZTip('TAB4_OS')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/HRA/>Health Risk Assessment</a>',host + "/Screenings/HRA/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/BIO/>Biometrics</a>',host + "/Screenings/BIO/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/BC/>Body Composition</a>',host + "/Screenings/BC/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/CC/>Colorectal Cancer</a>',host + "/Screenings/CC/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/BLT/>Blood Lab Tests</a>',host + "/Screenings/CC/","showSubMenu_TAB4_BLT(event)","hideDZTip('TAB4_BLT')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/IMM/>Immunizations</a>',null,"showSubMenu_TAB4_IMM(event)","hideDZTip('TAB4_IMM')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/TECH/>Technology</a>',null,"showSubMenu_TAB4_TECH(event)","hideDZTip('TAB4_TECH')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/OV/>Other Vaccinations</a>',host + "/Screenings/OV/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/ES/>Education Sessions</a>',host + "/Screenings/ES/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/HC/>Health Coaching</a>',host + "/Screenings/HC/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Screenings/REPORT/>Reporting</a>',host + "/Screenings/REPORT/",null,null,null,null);
    
    showVertMenu(event,'TAB4',mo);
  }

  initDZTip('TAB5','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB5_ESM','vmenu',0,null,null,'TAB5',null,10,130,50,100);
  function showSubMenu_TAB5_ESM(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/OLM/>Outlook Appointment</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/WL/>Wail List</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/AEM/>Active Event Management</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/PM/>Payment Module</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/SSL/>Secure Socket Link (SSL)</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/DS/>Dedicated Servers</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/AS/>Advanced Search</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/RI/>Reward Incentive</a>',null,null,null,null,null);
    
    showMenu(event,'TAB5_ESM',mo);
  }

  function showSubMenu_TAB5(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESU/>Online Employee Signup</a>',host + "/Scheduling/ESU/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/ESM/>Employee Signup Modules</a>',host + "/Scheduling/ESU/","showSubMenu_TAB5_ESM(event)","hideDZTip('TAB5_ESM')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/TESTIMONIALS/>Testimonials</a>',host + "/Scheduling/TESTIMONIALS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Scheduling/CLIENTS/>Client List</a>',host + "/Scheduling/CLIENTS/",null,null,null,null);
    
    showVertMenu(event,'TAB5',mo);
  }

  initDZTip('TAB6','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  function showSubMenu_TAB6(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/HEALTHNEWS/>Health Headlines</a>',host + "/Resources/HEALTHNEWS/",null,null,null,null);
    
    showVertMenu(event,'TAB6',mo);
  }

  initDZTip('TAB9','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  function showSubMenu_TAB9(event){
    var mo = "";
    
    showVertMenu(event,'TAB9',mo);
  }


  function showMainMenu(event){
    if (!browserSupportsMenu()) return;
    var mo = "";
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB1(event)","hideDZTip('TAB1')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB2(event)","hideDZTip('TAB2')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB3(event)","hideDZTip('TAB3')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB4(event)","hideDZTip('TAB4')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB5(event)","hideDZTip('TAB5')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB6(event)","hideDZTip('TAB6')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB9(event)","hideDZTip('TAB9')");
    
    showDZTip(event,'MainMenu','',mo,'','absolute',43,103);
  }

  function showMainMenu(event){
    if (!browserSupportsMenu()) return;
    var mo = "";
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'tab_home.gif',imgPathURL + 'tab_home_over.gif',64,29,host + '/',null,null);
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'tab_about_us.gif',imgPathURL + 'tab_about_us.gif',68,29,host + '/aboutus/',"showSubMenu_TAB1(event)","hideDZTip('TAB1')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'tab_flu_shots.gif',imgPathURL + 'tab_flu_shots_over.gif',70,29,host + '/flushots/',"showSubMenu_TAB3(event)","hideDZTip('TAB3')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'tab_health_screenings.gif',imgPathURL + 'tab_health_screenings_over.gif',118,29,host + '/Screenings/',"showSubMenu_TAB4(event)","hideDZTip('TAB4')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'tab_employee_scheduling.gif',imgPathURL + 'tab_employee_scheduling_over.gif',136,29,host + '/Scheduling/',"showSubMenu_TAB5(event)","hideDZTip('TAB5')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'tab_contact_us.gif',imgPathURL + 'tab_contact_us_over.gif',78,29,host + '/AboutUs/Contact/',null,null);
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'tab_resources.gif',imgPathURL + 'tab_resources_over.gif',75,29,host + '/resources/',"showSubMenu_TAB6(event)","hideDZTip('TAB6')");
    
    showDZTip(event,'MainMenu','',mo,'nav','relative',0,0);
  }

//-->

//-->
