//Copyright 2001/2002 by Men`s Division - The Men`s Company
//Germany/Duesseldorf                                                                     
// last modified: 28/05/2002 by Umberto



// open a content window (with consideration for screen size)
function openCenteredWindow(contentURL,contentTitle,contentWidth,contentHeight,scrollBars) {
        // center window on screen
        var winLeft = (screen.width - 1 - contentWidth) / 2;
        var winTop = (screen.height - 1 - contentHeight) / 2;

        if (winLeft < 0) {
                scrollBars = "yes";
                winLeft = 10;
                contentWidth = screen.width - 30;
        }
        if (winTop < 0) {
                scrollBars = "yes";
                winTop = 10;
                contentHeight = screen.height - 100;
        }

        var NewWindow = window.open(contentURL,contentTitle,'scrollbars='+scrollBars+',width='+contentWidth+',height='+contentHeight+',top='+winTop+',left='+winLeft+',screenX='+winLeft+',screenY='+winTop);
        NewWindow.focus();
        return NewWindow;
}


// void function
function dummy() {
}



