        function vis(bl)
        {
         document.getElementById(bl).style.visibility='visible';
         if("punkt1" == bl)
           showText(
"<ul class='details'><li class='details'>A uniform chassis concept with 7, 8 or 10 axles</li>" +
"<li class='details'>If required, a customer-specific rail-based portal for Portal Harbour Cranes or pontoon for Floating Cranes can be supplied instead of a tyre-mounted chassis</li></ul>"
           );
         else if ("punkt2" == bl)
           showText(
"<ul class='details'><li class='details'>Simple manoeuvring with the smallest curve radii thanks to an innovative axle concept with individually steered axles</li>" +
"<li class='details'>Crab steering up to 25° angle in relation to the crane longitudinal axis for simple positioning alongside the ship, even in confined spaces</li></ul>"
           );
         else if ("punkt3" == bl)
           showText(
"<ul class='details'><li class='details'>Maintenance-free equaliser beams to ensure even axle-load distribution even on uneven quays</li>" +
"</ul>"
           );
         else if ("punkt4" == bl)
           showText(
"<ul class='details'><li class='details'>Proven H-shaped stabiliser arrangement for the best possible transfer of forces to the quay substructure</li>" +
"<li class='details'>Automatic propping system for saving time when changing the position of the crane alongside the ship</li></ul>"
           );
         else if ("punkt5" == bl)
           showText(
"<ul class='details'><li class='details'>A uniform design principle with two complete floors in crane models 6, 7 &amp; 8</li>" +
"<li class='details'>Clear headroom on both floors of 2.5 m for upright working in all areas</li></ul>"
           );
         else if ("punkt6" == bl)
           showText(
"<ul class='details'><li class='details'>All the machines, drives and electrical equipment are grouped accordingly in the superstructure in separate, generously-dimensioned rooms</li>" +
"<li class='details'>The diesel-generator set and hoist located in the rear section reduce the overall weight of the crane</li></ul>"
           );
         else if ("punkt7" == bl)
           showText(
"<ul class='details'><li class='details'>Thanks to a slide-mount, the diesel-generator unit can be removed and replaced by using standard port equipment</li>" +
"</ul>"
           );
         else if ("punkt8" == bl)
           showText(
"<ul class='details'><li class='details'>Minimal dust accumulation on machines and drives thanks to active dust protection system</li>" +
"</ul>"
           );
         else if ("punkt9" == bl)
           showText(
"<ul class='details'><li class='details'>Towers in torsionally-stiff closed-box design</li>" +
"<li class='details'>Fast and safe ascent and descent to the tower cab by means of a weather-proof stairway with comfortable steps having a 50° inclination</li></ul>"
           );
         else if ("punkt10" == bl)
           showText(
"<ul class='details'><li class='details'>Simple access to maintenance points thanks to large platforms</li>" +
"</ul>"
           );
         else if ("punkt11" == bl)
           showText(
"<ul class='details'><li class='details'>Thanks to the high boom pivot point, the crane, positioned on the quay edge directly alongside the vessel, can easily serve the ship</li>" +
"</ul>"
           );
         else if ("punkt12" == bl)
           showText(
"<ul class='details'><li class='details'>High degree of stiffness and exact crane motions thanks to the permanently stiff flange connection of the boom head and root</li>" +
"</ul>"
           );
         else if ("punkt13" == bl)
           showText(
"<ul class='details'><li class='details'>Torque-regulated cable reel for good power cable routing and long cable service life</li>" +
"</ul>"
           );
         else if ("punkt14" == bl)
           showText(
"<ul class='details'><li class='details'>Ergonomically designed tower cab affording the best possible comfort</li>" +
"<li class='details'>Visumatic<sup>®</sup> Crane Management System displays all the crane functions in a structured, easy-to-understand format for easy operation and selection of various operating statuses and statistical evaluations</li>" +
"<li class='details'>High crane availability thanks to enhanced diagnostic possibilities via Visumatic<sup>®</sup></li>" +
"</ul>"
           );
         else if ("punkt15" == bl)
           showText(
"<ul class='details'><li class='details'>The crane operator has an excellent view of the ship’s cargo hold thanks to the high position of the tower cab</li>" +
"<li class='details'>Optimal load guidance system including load linear motion, antisway, point-to-point handling and hoisting height limiting modes</li></ul>"
           );
         else if ("punkt16" == bl)
           showText(
"<ul class='details'><li class='details'>Radio remote control for all crane functions, e.g. for easy crane travel</li>" +
"</ul>"
           );
        }
        
        function invis(bl)
        {
         document.getElementById(bl).style.visibility='hidden';
         showNoText();
        }

        function showText(htmlText)
        {
         htmlString = "" + htmlText + "";
         document.getElementById('infobereich').innerHTML = htmlString;
        }

        function showNoText()
        {
         showText("");
        }

