function popup_win(path, width, height){

  window.open(path, 'popupWin', 'width=' + width + ', height=' + height + ', location=no, menubar=no, scrollbars=no, status=no, toolbar=no, resizable=no');

}

// -------------------------------

function popup_win_scrollingEnabled(path, width, height){

  window.open(path, 'popupWin', 'width=' + width + ', height=' + height + ', location=no, menubar=no, scrollbars=yes, status=no, toolbar=no, resizable=no');

}

