function popupWindowSpecialOffers (url) {
  var fenster = window.open(
    url,
    "Aktuelle Sonderangebote",
    "width=680,height=740,resizable=yes,,scrollbars=yes"
  );
  fenster.focus();
  return false;
}

window.addEvent('domready', function() {
  // NOT USED  popupWindowSpecialOffers("/aktuelle-sonderangebote");
  hs.targetX = 'new_articles -580px';
  hs.targetY = 'new_articles -400px';
  hs.wrapperClassName = 'draggable-header';
  hs.htmlExpand($('new_articles'),{headingText:'Neue Artikel'});
});

