//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//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.exatec.de", top.document.title);
  }
}


//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//WindowOpen-Funktion f?r Popup++++++++++++++++++++++++++++++++++++++
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

function winOpen(theURL,winName,features)
{ 
   window.open(theURL,winName,features);
}

function printpage()

  {
    var Url;
    if(parent.inhalt!=null)
     Url = encodeURI(parent.inhalt.document.location.href);
    else
     Url = encodeURI(document.location.href);

    window.open("/module/print/Print.aspx?url=" +Url, "Drucken","width=600,height=800,scrollbars=yes");

  }
