

/* *******************************************************************************************
 *         POPUP functions                                                                   *
 ******************************************************************************************* */

function popWinOpen(winW,winH,sUrl,sName,iResize,iScroll) {
	if (screen) {
		if ((screen.height - winH) < 150) {
			var winX = (screen.width - winW) / 2;
			var winY = 0;
		} else {
			var winX = (screen.width - winW) / 2;
			var winY = (screen.height - winH) / 2;
		}
		var popWindow = window.open(sUrl,sName,"resizable=" + iResize + ",menubar=0,status=1,scrollbars=" + iScroll + ",width=" + winW + ",height=" + winH + ",top=" + winY + ",left=" + winX + "");
		if (popWindow) popWindow.focus();
	} else {
		window.open(sUrl,sName,"resizable=" + iResize + ",menubar=0,status=1,scrollbars=" + iScroll + ",width=" + winW + ",height=" + winH);
	}
}


function viewImage(pageId, nbr) {
	popWinOpen(500,600,"/asp/view_image.asp?page_id=" + pageId + "&no="+ nbr,"viewWin",1,0) ;
}

