function H() {
   if(document.getElementById('div_content').offsetHeight) {
      var div_heights = new Array(
        document.getElementById('div_content').offsetHeight,
        document.getElementById('div_navigation').offsetHeight,
        document.getElementById('div_features').offsetHeight
      );
      div_heights = div_heights.reverse(div_heights.sort(num_sort));
      var style_height = div_heights[0] + "px";
      document.getElementById('div_navigation').style.height = style_height;
      document.getElementById('div_content').style.height = style_height;
      document.getElementById('div_features').style.height = style_height;
   }
}
function num_sort(a,b) { 
   return a-b; 
}

function show_menu(id_name) {

	var nname = getCookie('nname');
	var markup = "";
    if (nname==null) {
	} else 
	{
		markup = nname + "<br>";
        if (nname=="Admin") {
			markup += '<img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="m_menu" href="editpublicnews.shtml">Public News</a><br><img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="m_menu" href="editinternnews.shtml">Interne News</a>';
	        } else {
				markup += '<img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="m_menu" href="aktuelles.shtml">Aktuelles</a><br><img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="m_menu" href="reservierung.shtml">Reservierung</a><br><img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="m_menu" href="abstg.html">A.bestimmungen</a>';
	        }
	}
	document.getElementById(id_name).innerHTML = markup;
}
/*
	var nname = getCookie('nname');
                 if (nname==null) {
                 } else {
                 	   	document.write(nname);
                         document.write('</td></tr>');

                         if (nname=="Admin") {
	                        document.write('<tr><td><img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="menu" href="editpublicnews.shtml">Public News</a></td></tr>');
	                        document.write('<tr><td><img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="menu" href="editinternnews.shtml">Interne News</a>');

                         } else {
	                        document.write('<tr><td><img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="menu" href="aktuelles.shtml">Aktuelles</a></td></tr>');
	                        document.write('<tr><td><img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="menu" href="reservierung.shtml">Reservierung</a></td></tr>');
         	                document.write('<tr><td><img src="img/spot.bmp" alt="x"/>&#160;&#160;<a class="menu" href="abstg.html">A.bestimmungen</a>');
                         }

				}
*/




