var newWindow;
var sCode;
var newDesc;
var newWinTitle;
var newAlt;
//function openCloseupWindowCHV(imageName,imageWidth,imageHeight,desc,winTitle,alt,posLeft,posTop,inset1,inset2) {
function openCloseupWindowCHV(itemName,imageName,imageWidth,imageHeight,desc,winTitle,alt,posLeft,posTop) {
//	iWinWidth = imageWidth + 40;

	if (itemName != "")
	{
		newDesc = "<p><center>"+itemName+"</center></p>"+desc;
		newWinTitle = itemName+" - "+winTitle;
		newAlt = itemName;
	} else {
		newDesc = desc;
		newWinTitle = winTitle;
		newAlt = "";
	}

	newWindow = window.open("","newWindow","width=400,height=450,left="+posLeft+",top="+posTop+",scrollbars,resizable");
	newWindow.document.open();
	sCode = '<html><head><title>'+newWinTitle+'</title></head><body bgcolor="#FFCC99" text="#663300" background="../images/diagbk.jpg" link="#CC6600" alink="#FF3300" vlink="#666666" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">';  <!--  onBlur="self.close()" -->
	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="'+newAlt+'">';
	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">'+newDesc+'</td><td></td></tr>';
	sCode = sCode+'<tr><td height="10"></td><td></td><td></td></tr>';
	sCode = sCode+'</table>';
	sCode = sCode+'</body></html>';
	newWindow.document.write(sCode);
	newWindow.document.close();
	newWindow.focus();	
}
