
  conBrowser=1;

  switch1on  = new Image(280,17);  switch1on.src  = 'image/button1_do.gif';
  switch1off = new Image(280,17);  switch1off.src = 'image/button1_up.gif';
  switch2on  = new Image(280,17);  switch2on.src  = 'image/button2_do.gif';
  switch2off = new Image(280,17);  switch2off.src = 'image/button2_up.gif';
  switch3on  = new Image(280,17);  switch3on.src  = 'image/button3_do.gif';
  switch3off = new Image(280,17);  switch3off.src = 'image/button3_up.gif';
  switch4on  = new Image(280,17);  switch4on.src  = 'image/button4_do.gif';
  switch4off = new Image(280,17);  switch4off.src = 'image/button4_up.gif';
  switch5on  = new Image(280,17);  switch5on.src  = 'image/button5_do.gif';
  switch5off = new Image(280,17);  switch5off.src = 'image/button5_up.gif';
  switch6on  = new Image(280,17);  switch6on.src  = 'image/button6_do.gif';
  switch6off = new Image(280,17);  switch6off.src = 'image/button6_up.gif';
  switch7on  = new Image(280,17);  switch7on.src  = 'image/button7_do.gif';
  switch7off = new Image(280,17);  switch7off.src = 'image/button7_up.gif';
  switch8on  = new Image(280,17);  switch8on.src  = 'image/button8_do.gif';
  switch8off = new Image(280,17);  switch8off.src = 'image/button8_up.gif';
  switch9on  = new Image(280,17);  switch9on.src  = 'image/button9_do.gif';
  switch9off = new Image(280,17);  switch9off.src = 'image/button9_up.gif';
  switch10on  = new Image(280,17);  switch10on.src  = 'image/button10_do.gif';
  switch10off = new Image(280,17);  switch10off.src = 'image/button10_up.gif';
  switch11on  = new Image(117,18);  switch11on.src  = 'image/uitnodiging_do.gif';
  switch11off = new Image(117,18);  switch11off.src = 'image/uitnodiging_up.gif';
  switch12on  = new Image(280,17);  switch12on.src  = 'image/button12_do.gif';
  switch12off = new Image(280,17);  switch12off.src = 'image/button12_up.gif';





  function HighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "on");
      		document [musswitch].src = switchnavn.src;
    		}
  	}

function UndoHighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "off");
		document [musswitch].src = switchnavn.src;
		}
	}



