// functions.js
// Javascript Implementierungen
//
// Autor: Alexander Meindl <am@meindlsoft.com>


////////////////////////////////////////////////////////////////////////////////////////
// Popup Fenster

var popupWindow = null;
function open_fenster(url,width,height,scrolling,navigation)
{
    if(!popupWindow){
         popupWindow = window.open(url,"PopupFenster","scrollbars="+scrolling+",location=0,directories=0,status=0,resizable=0,width="+width+",height="+height+"");
    }
    else {
        if(!popupWindow.closed){
            popupWindow.close();
        }
        popupWindow = window.open(url,"PopupFenster","scrollbars="+scrolling+",location=0,directories=0,status=0,resizable=0,width="+width+",height="+height+"");
    }
}
// End of file
