// browser  abfragen
var xy = navigator.appVersion;
xz = xy.substring(0,4);

//Bildobjekte in Arrays definieren

 var off = new Array();
   off[1] = new Image(); off[1].src = "images/bu_starts.gif";
   off[2] = new Image(); off[2].src = "images/bu_kanz.gif";
   off[3] = new Image(); off[3].src = "images/bu_recht.gif";
   off[4] = new Image(); off[4].src = "images/bu_rae.gif";
   off[5] = new Image(); off[5].src = "images/bu_kooperationen.gif";
   off[6] = new Image(); off[6].src = "images/bu_kont.gif";
   off[7] = new Image(); off[7].src = "images/bu_impr.gif";


 var on = new Array();
   on[1] = new Image(); on[1].src = "images/bu_starts_f2.gif";
   on[2] = new Image(); on[2].src = "images/bu_kanz_f2.gif";
   on[3] = new Image(); on[3].src = "images/bu_recht_f2.gif";
   on[4] = new Image(); on[4].src = "images/bu_rae_f2.gif";
   on[5] = new Image(); on[5].src = "images/bu_kooperationen_f2.gif";
   on[6] = new Image(); on[6].src = "images/bu_kont_f2.gif";
   on[7] = new Image(); on[7].src = "images/bu_impr_f2.gif";




  var motxt = new Array();
   motxt[0] = new Image(); motxt[0].src = "images/shim.gif";
   motxt[1] = new Image(); motxt[1].src = "images/motxt_kanzlei.gif";
   motxt[2] = new Image(); motxt[2].src = "images/motxt_kanzlei.gif";
   motxt[3] = new Image(); motxt[3].src = "images/motxt_recht.gif";
   motxt[4] = new Image(); motxt[4].src = "images/motxt_rae.gif";
   motxt[5] = new Image(); motxt[5].src = "images/motxt_kooperationen.gif";
   motxt[6] = new Image(); motxt[6].src = "images/motxt_kont.gif";
   motxt[7] = new Image(); motxt[7].src = "images/motxt_impressum.gif";
   motxt[8] = new Image(); motxt[8].src = "images/shim.gif";



   if (navigator.appName=="Netscape" && xz>=4 || navigator.appName=="Microsoft Internet Explorer" && xz>=4)
  {
    //funktion fuer Mouseover - Highlight
    function SwapOn(i,nr)
    {
       window.document.images[nr+4].src = on[i].src;
       window.document.txt.src = motxt[i].src;
    }

    //funktion fuer Mouseout - Reset
    function SwapOff(i,nr)
    {
       window.document.images[nr+4].src = off[i].src;
       window.document.txt.src = motxt[0].src;
    }
  }
  	// Fenster öffnen funktion	 	 
	function openwin(target)
	{		
		settings ='height=600,width=800,top=10,left=10,scrollbars=yes,resizable=yes';
		win = window.open(target,'window01',settings);
		win.focus();
	}

function openprintmap(target)
	{		
		settings ='height=560,width=600,top=10,left=10,scrollbars=yes,resizable=yes';
		win = window.open(target,'window01',settings);
		win.focus();
	}