// Seite empfehlen
function sendPage()
         {
         var str = location.href;

         var kurz = str.replace(/\/S[^\/]+/,'')

         mail_str = "mailto:?subject=" + document.title;
         mail_str += "&body=Schauen Sie sich bitte die Seite von Lift-World.info an! Sie heisst: " + document.title;
         mail_str += ". Hier ist die Adresse: " + kurz;

         location.href = mail_str;
         }


// Lesezeichen setzen
function addBookmark()
         {
         bookmarkurl=self.location.href;
         bookmarktitle=document.title;
         if (document.all)
            {
            window.external.AddFavorite(bookmarkurl,bookmarktitle)
            }
            else alert("STRG + D drücken / Press STRG + D");
         }


// Seite drucken
function printPage()
         {
         print(document);
         }