function Create_Moz_Menu() {
var sectionmenu                = parent.frames[0].document.datesection.section;
var length                     = 0;
sectionmenu.length             = length;

sectionmenu.options[length++]  = new Option('Inhoud','ih');
sectionmenu[length-1].disabled = false
sectionmenu.options[length++]  = new Option('Nieuws','nw');
sectionmenu[length-1].disabled = false;
sectionmenu.options[length++]  = new Option('UIT-tips','ut');
sectionmenu[length-1].disabled = false;
sectionmenu.options[length++]  = new Option('Felicitaties','fe');
sectionmenu[length-1].disabled = true;
sectionmenu.options[length++]  = new Option('Cursussen en workshops','cu');
sectionmenu[length-1].disabled = true;
sectionmenu.options[length++]  = new Option('Zandhazendurp','zd');
sectionmenu[length-1].disabled = true;
sectionmenu.options[length++]  = new Option('Sport','sp');
sectionmenu[length-1].disabled = false;
sectionmenu.options[length++]  = new Option('Gemeenteloket','gl');
sectionmenu[length-1].disabled = true;
sectionmenu.options[length++]  = new Option('Rosmalen, jong en oud','ro');
sectionmenu[length-1].disabled = false;
sectionmenu.options[length++]  = new Option('Prikbord','pr');
sectionmenu[length-1].disabled = false;
sectionmenu.options[length++]  = new Option('Heemkundekring Rosmalen','hk');
sectionmenu[length-1].disabled = true;
sectionmenu.options[length++]  = new Option('Rosmalense websites','rw');
sectionmenu[length-1].disabled = true;
sectionmenu.options[length++]  = new Option('Kidzz krant','kk');
sectionmenu[length-1].disabled = true;
sectionmenu.options[length++]  = new Option('En dan nog dit ...','en');
sectionmenu[length-1].disabled = false;
sectionmenu.options[length++]  = new Option('Zoekplaatje','zp');
sectionmenu[length-1].disabled = false;
}

function Create_IE_Menu() {
var sectionmenu                = parent.frames[0].document.datesection.section;
var length                     = 0;
sectionmenu.length             = length;

sectionmenu.options[length++]  = new Option('Inhoud','ih');
sectionmenu.options[length++]  = new Option('Nieuws','nw');
sectionmenu.options[length++]  = new Option('UIT-tips','ut');
//sectionmenu.options[length++]  = new Option('Felicitaties','fe');
//sectionmenu.options[length++]  = new Option('Cursussen en workshops','cu');
//sectionmenu.options[length++]  = new Option('Zandhazendurp','zd');
sectionmenu.options[length++]  = new Option('Sport','sp');
//sectionmenu.options[length++]  = new Option('Gemeenteloket','gl');
sectionmenu.options[length++]  = new Option('Rosmalen, jong en oud','ro');
sectionmenu.options[length++]  = new Option('Prikbord','pr');
//sectionmenu.options[length++]  = new Option('Heemkundekring Rosmalen','hk');
//sectionmenu.options[length++]  = new Option('Rosmalense websites','rw');
//sectionmenu.options[length++]  = new Option('Kidzz krant','kk');
sectionmenu.options[length++]  = new Option('En dan nog dit ...','en');
sectionmenu.options[length++]  = new Option('Zoekplaatje','zp');
}

function Update_Menu(section,date) {
   if (date == window.top.date)
      {
        return;
      }
   bname = navigator.appName;
   if (bname.indexOf("Netscape") != -1)
      {
        Create_Moz_Menu();
      }
   if (bname.indexOf("Microsoft") != -1)
      {
        Create_IE_Menu();
      }
   window.top.date = date;
}

