function winPop(winUrl, winName, winWidth, winHeight, isResizable) {
 winAttributes = 'width=' + winWidth + ', height=' + winHeight + ', resizable=' + isResizable;
 window.open(winUrl, winName, winAttributes);
}