// ----------------------------------------------------
// openPopupImage()
// ----------------------------------------------------
var popupImage=null;
function openPopupImage(imgPath, title, width,height,border,isInterview)
{

	var w=screen.availWidth;
	var h=screen.availHeight;
	var	pw = width+0*border;
	var	ph = height+0*border;

	var X=(w-pw)/2;
	var Y=(h-ph)/2;
	
	title =title;
	var fullUrl = "Custom/popImage.php?url="+imgPath+( "&border="+border+"&title="+title );
	if (popupImage)
		popupImage.close();
	
	popupAspect = "width="+pw+",height="+ph+",menubar=no,location=no,resizable=no,status=no,scrollbars="+(isInterview ? "yes" : "no");
	popupImage = self.open(fullUrl, "popupImage", popupAspect,true);
	popupImage.moveTo(X,Y);
	popupImage.focus();

}
