/**
  * Created by Andreas Kaiser on 2007-04-12.
  * Copyright (c) 2007 Xo7 GmbH. All rights reserved.
  */

function popupHelpWin(section, product, keyword) {
    url =  ('/content/' + section + '/' + product + '/' + keyword + '/plonearticle_popup');
    helpPopup = window.open(url, "HilfePopupFenster", "width=500,height=300,left=100,top=200,scrollbars=yes,resizable=yes");
    helpPopup.focus();
}

function popupMainWin(url) {
    helpPopup = window.open(url, "tlxPopup", "width=960,height=600,left=1,top=1,scrollbars=yes,resizable=yes");
    helpPopup.focus();
}
