// Weiterleitung ueber ein select-Feld
function changeWindow() {
  var idcat = document.formular.ql.value;
  document.formular.action = "/c/cms/front_content.php?idcat=" + idcat;
  document.formular.method = 'post';
  document.formular.submit();
}
