/*
-----------------------------------------
  design, animation, html, cgi, datenbank
-----------------------------------------
  lemonjuice digital creations
  joachim karl - nina metz - patrick roye
  hornschuchpromenade 5
  90762 fuerth
  ++49 911 7879477
  www.lemonjuice.de
  info@lemonjuice.de
  copyright 2002-2006
-----------------------------------------
*/

if(navigator.appName+navigator.appVersion.charAt(0) == 'Netscape4')
{ns4 = 1; ns6 = 0; ie4 = 0; ie5 = 0;}
if(navigator.appName+navigator.appVersion.charAt(0) == 'Netscape5')
{ns4 = 0; ns6 = 1; ie4 = 0; ie5 = 0;}
if(navigator.userAgent.indexOf('MSIE 4') >= 0)
{ns4 = 0; ns6 = 0; ie4 = 1; ie5 = 0;}
         if(navigator.userAgent.indexOf('MSIE 5') >= 0 || navigator.userAgent.indexOf('MSIE 6') >= 0 || navigator.userAgent.indexOf('MSIE 7') >= 0)
{ns4 = 0; ns6 = 0; ie4 = 0; ie5 = 1;} // ie5 = 1; is IE 5 and IE 6 !!



 function hide_div (divname)
   {
         if(ns4 == 1)
         {
             var layerobj;
             layerobj = document.layers[divname]
             layerobj.visibility = "hide";
         }

	 if(ns6 || ie5 == 1)
         {
             var layerobj;
             layerobj = document.getElementById(divname)
             layerobj.style.visibility = 'hidden';
         }     

         if(ie4 == 1)
         {
             var layerobj;
             layerobj = document.all[divname];
             layerobj.style.visibility = 'hidden';
         }     
   }

   function show_div (divname)
   {
         if(ns4 == 1)
         {
             var layerobj;
             layerobj = document.layers[divname]
             layerobj.visibility = "show";
         }

	 if(ns6 || ie5 == 1)
         {
             var layerobj;
             layerobj = document.getElementById(divname)
             layerobj.style.visibility = 'visible';
         }     

         if(ie4 == 1)
         {
             var layerobj;
             layerobj = document.all[divname];
             layerobj.style.visibility = 'visible';
         }

    }
// Stop hiding from old browsers 

