var newWindow;
var sCode;
function openCloseupWindowCHV(imageName,imageWidth,imageHeight,desc,winTitle,alt,posLeft,posTop) {
<!--	iWinWidth = imageWidth + 40;-->
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop+",scrollbars,resizable");
	newWindow.document.open();
	sCode = '<html><head><title>'+winTitle+'</title>';

	sCode = sCode+'</head><body link="#0000cc" alink="#ff6633" vlink="#990099" background="#ffffff"  leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'; 
	
	sCode = sCode+'<table width="372" border="0" cellpadding="0" cellspacing="0">';
	sCode = sCode+'<tr><td width="23" height="30"></td><td width="323"></td><td width="26"></td></tr>';
	sCode = sCode+'<tr><td height="150"></td><td valign="top"><div align="center">';
	sCode = sCode+'<img src="'+imageName+'" alt="'+alt+'">';
	sCode = sCode+'</div></td><td></td></tr>';
	sCode = sCode+'<tr><td height="28"></td><td></td><td></td></tr>';
	sCode = sCode+'<tr><td height="10"></td><td valign="top"  bgcolor="#ffffff">'+desc+'</td><td></td></tr>';
	sCode = sCode+'<tr><td height="10"></td><td></td><td></td></tr>';
	sCode = sCode+'<tr><td height="10" colspan="3"><center><b><a href="javascript:self.close()">Close this window</a></center></b></td></tr>';
	sCode = sCode+'</table>';
	sCode = sCode+'</body></html>';
	newWindow.document.write(sCode);
	newWindow.document.close();
	newWindow.focus();	
}

function closeWindow() {
 if (newWindow && !newWindow.closed) {
 	newWindow.close()
 	}
 	}
