function PopDBImg(pageSrc, imgTitle, imgID, h, w) {
	var scr_width = 620;
	var scr_height = screen.height - 100;
	if (h) scr_height = h + 90;
	var win_title = "Enlarged Image";
	var win_bg = "#000000";
	var img_dir = "";
	var fontColor = "#FFFF00";

	var newWin = null;
	newWin = window.open(pageSrc,"","width=" + scr_width + ",height=" + scr_height + ",scrollbars=no,resizable=yes");
}
