<!--
var winObj = null;

function launchWin(whereto, imgWidth, imgHeight, bgc, fgc, lnk) {
	var tWinWidth = imgWidth + 40;
	var tWinHeight = imgHeight + 80;

	var bckcolor = "#000000";
	if (bgc != null) bckcolor = bgc;

	var frcolor = "#FFFFFF";
	if (fgc != null) frcolor = fgc;

	if (navigator.appName == "Microsoft Internet Explorer" && winObj != null) {
		winObj.close();
		winObj = null;
	}

	eval("winObj = window.open(whereto, 'imageWin', 'toolbars=1, location = 0, statusbar=0, menubars=1, scrollbas=yes, resizable=1, width=" + tWinWidth + ", height=" + tWinHeight + ", left=10, top=70');");
	if (winObj != null) {

		winObj.focus();

	}
}
-->