 

 conBrowser=1;

  switch1on   = new Image(108,43);  switch1on.src   = 'images/button1do.gif';
  switch1off  = new Image(108,43);  switch1off.src  = 'images/button1up.gif';
  switch2on   = new Image(131,43);  switch2on.src   = 'images/button2do.gif';
  switch2off  = new Image(131,43);  switch2off.src  = 'images/button2up.gif';
  switch3on   = new Image(146,43);  switch3on.src   = 'images/button3do.gif';
  switch3off  = new Image(146,43);  switch3off.src  = 'images/button3up.gif';
  switch4on   = new Image(200,43);  switch4on.src   = 'images/button4do.gif';
  switch4off  = new Image(200,43);  switch4off.src  = 'images/button4up.gif';
  switch5on   = new Image(157,43);  switch5on.src   = 'images/button5do.gif';
  switch5off  = new Image(157,43);  switch5off.src  = 'images/button5up.gif';
  switch6on   = new Image(21,21);  switch6on.src   = 'images/closedo.gif';
  switch6off  = new Image(21,21);  switch6off.src  = 'images/closeup.gif';
  switch7on   = new Image(138,54);  switch7on.src   = 'images/plattegrond_do.jpg';
  switch7off  = new Image(138,54);  switch7off.src  = 'images/plattegrond_up.jpg';
  switch8on   = new Image(138,54);  switch8on.src   = 'images/mailsms_do.jpg';
  switch8off  = new Image(138,54);  switch8off.src  = 'images/mailsms_up.jpg';
  switch9on   = new Image(138,35);  switch9on.src   = 'images/resetdo.gif';
  switch9off  = new Image(138,35);  switch9off.src  = 'images/resetup.gif';
  switch10on   = new Image(138,35);  switch10on.src   = 'images/submitdo.gif';
  switch10off  = new Image(138,35);  switch10off.src  = 'images/submitup.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;
		}
	}


