//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//WindowOpen-Funktion f?r Popup++++++++++++++++++++++++++++++++++++++
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

function winOpen(theURL,winName,features)
{ 
   window.open(theURL,winName,features);
}

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//Bookmark-Funktion f?r IE4+ ++++++++++++++++++++++++++++++++++++++++
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

function setBookmark()
{
  var brty = navigator.appName;
  var brve = navigator.appVersion;
  if (brty.indexOf("Explorer")>-1)
  {
    window.external.AddFavorite("http://www.reiterverein-bayer.de", top.document.title);
  }
}

function print()

  {

    var Url = encodeURI(document.location.href);

    window.open("/module/print/Print.aspx?url=" +Url, "Drucken","width=775,height=550,scrollbars=yes");

  }
