// Allgemeine Seitenscripte

function printWindow() {
  Browser = parseInt(navigator.appVersion);
  if(Browser >= 4) {
    window.print();
  }
}


function CreateBookmarkLink() {


if (document.all)
{
        // Add to Favorites (Internet Explorer)
        window.external.AddFavorite('http://www.adventure-golf-fehmarn.de','Adventure-Golf Fehmarn')
}

else
{
        // Add to Bookmarks (Mozilla Firefox)
        window.sidebar.addPanel('Adventure-Golf Fehmarn','http://www.adventure-golf-fehmarn.de','');
}
 }



