
  conBrowser=0;
  function display(stuff) { window.status = stuff; }
//-->


<!--
  conBrowser=1;
  pic1on  = new Image(62,20);  	   pic1on.src  = '../images/top_buttons/welcome!.gif';
  pic1off = new Image(62,20);  	   pic1off.src = '../images/top_buttons/welcome.gif';
  pic1stay = new Image(62,20);  	pic1stay.src = '../images/top_buttons/welcome!.gif';
  pic2on  = new Image(67,20);   	pic2on.src  = '../images/top_buttons/contactus!.gif';
  pic2off = new Image(67,20);  	   pic2off.src = '../images/top_buttons/contactus.gif';
  pic2stay = new Image(67,20);  	pic2stay.src = '../images/top_buttons/contactus!.gif';
  pic3on  = new Image(42,20);    	pic3on.src  = '../images/top_buttons/feedback!.gif';
  pic3off = new Image(42,20);   	pic3off.src = '../images/top_buttons/feedback.gif';
  pic3stay = new Image(42,20);  	pic3stay.src = '../images/top_buttons/feedback!.gif';
  pic4on  = new Image(73,20);  		pic4on.src  = '../images/top_buttons/lost!.gif';
  pic4off = new Image(73,20);  		pic4off.src = '../images/top_buttons/lost.gif';
  pic4stay = new Image(73,20);  	pic4stay.src = '../images/top_buttons/lost!.gif';
  pic5on  = new Image(73,20);  		pic5on.src  = '../images/top_buttons/staff!.gif';
  pic5off = new Image(73,20);  		pic5off.src = '../images/top_buttons/staff.gif';
  pic5stay = new Image(73,20);  	pic5stay.src = '../images/top_buttons/staff!.gif';
  pic6on  = new Image(73,20);  		pic6on.src  = '../images/top_buttons/education!.gif';
  pic6off = new Image(73,20);  		pic6off.src = '../images/top_buttons/education.gif';
  pic6stay = new Image(73,20);  	pic6stay.src = '../images/top_buttons/education!.gif';

    /*Include more pictures here! Don't forget to change height und width of the image! In this example it's 14,14.*/

//-->



<!--
	 var whichbutton = 0
  	function HighLight(muspic) {
        if (conBrowser) {
                picnavn = eval(muspic + "on");
                document [muspic].src = picnavn.src;
                }
        }

	function UndoHighLight(muspic) {
        if (conBrowser) {
                picnavn = eval(muspic + "off");
                document [muspic].src = picnavn.src;
				  }	
        }

	function Static(muspic) {
        if (conBrowser) {
                picnavn = eval(muspic + "stay");
                document [muspic].src = picnavn.src;
				  }
        }
   function Change() {
        if (conBrowser) {
				  if (whichbutton == 1) UndoHighLight('pic1');
				  if (whichbutton == 2) UndoHighLight('pic2');
				  if (whichbutton == 3) UndoHighLight('pic3');
				  if (whichbutton == 4) UndoHighLight('pic4');
                                  if (whichbutton == 5) UndoHighLight('pic5');
				  if (whichbutton == 6) UndoHighLight('pic6');			  
/*Include the if-clauses for further pictures here! */
				  }
		 }