var isIE=(navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin=(navigator.appVersion.toLowerCase(  ).indexOf("win") != -1) ? true : false;

function websPrint(url, width, height) {
  window.open(url,"popup","width=" + width + ",height=" + height + ",menubar=yes,scrollbars=yes,resizable=yes");
}

function websPopup2(url, width, height) {
  window.open(url,"popup","width=" + width + ",height=" + height + ",menubar=no,scrollbars=no,resizable=no");
}

function websPopupVariable(url, width, height, bar, scroll, resize) {
  window.open(url,"popup","width=" + width + ",height=" + height + ",menubar=" + bar + ",scrollbars=" + scroll + ",resizable=" + resize);
}


function popupForm(myform, windowname, width, height) {
  if (!window.focus)return (true);
  window.open('', windowname, "height="+height+",width="+width+",menubar=yes,scrollbars=yes,resizable=yes");
  myform.target=windowname;

  return (true);
}


function bookmark() {
  var doc_title = document.title;
  var doc_url = document.URL;

  if (document.all && !window.opera){ //IE5+
    document.write("<a class=\"lesezeichen\" href=\"javascript:window.external.AddFavorite(document.URL,document.title);\" alt=\"Seite in Favoriten ablegen\" border=\"0\" name=\"bookmarken\">Lesezeichen</a>");
  }
  else if ((typeof window.sidebar == 'object') && (typeof window.sidebar.addPanel == 'function')){ //Gecko
    document.write("<a class=\"lesezeichen\" href=\"javascript:window.sidebar.addPanel ('" + doc_title + "', '" + doc_url + "','');\" title=\"" + doc_title + "\" target=\"_content\" alt=\"Seite in Favoriten ablegen\" border=\"0\" name=\"bookmarken\">Lesezeichen</a>");
  }
  else{
    document.write("<a class=\"lesezeichen\" href=\"" + doc_url + "\" title=\"" + doc_title + "\" rel=\"sidebar\" target=\"_content\" alt=\"Seite in Favoriten ablegen\" border=\"0\" name=\"bookmarken\">Lesezeichen</a>");
  }
}
