function openPopupWin(newWindow, iScrollbars, iWidth, iHeight, iX, iY)
{
    winStats="menubar=no,location=no,directories=no,status=no,resizable=yes,scrollbars=" + iScrollbars;

    if (navigator.appName.indexOf("Microsoft")>=0)
    {
      winStats+=",left=" + iX + ",top=" + iY + ",width=" + iWidth + ",height=" + iHeight;
    }
    else
    {
      winStats+=",screenX=" + iX + ",screenY=" + iY + ",width=" + iWidth + ",height=" + iHeight;
    }
    
    popwin=window.open(newWindow,"popupwin",winStats);
}
