
// Funktionen

function PopUp(loc, b, h, sc) {
  PopUpWin =
      window.open(loc, "popup", "width=" + b + ",height=" + h + ",scrollbars=" + sc);
  PopUpWin.focus();
}

function PopUpSmall(loc, b, h, sc) {
  PopUpWin =
      window.open(loc, "popup", "width=" + b + ",height=" + h + ",menubar=no,locationbar=no,personalbar=no,statusbar=no,toolbar=no,scrollbars=" + sc);
  PopUpWin.focus();
}

function tellafriend(pagePath, lang) {
  PopUpWin =
      window.open("/popups/recommend.aspx?path=" + pagePath + "&lang=" + lang, "popup", "width=400,height=600,scrollbars=no");
  PopUpWin.focus();
}

function lit(id) {
  PopUpWin =
      window.open("/popups/literatur_details.aspx?id=" + id, "popup", "width=645,height=450,menubar=no,locationbar=no,personalbar=no,statusbar=no,toolbar=no,scrollbars=no");
  PopUpWin.focus();
}

function quiz(id) {
  PopUpWin =
      window.open("/popups/ellingo/test.aspx?id=" + id, "popup", "width=655,height=700,menubar=no,locationbar=no,personalbar=no,statusbar=no,toolbar=no,scrollbars=yes,resizable=yes");
  PopUpWin.focus();
}

// Favicon
//document.write('<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon">')

