// pop-up window function - display image with caption


//***************************************************************************
function popup_image(pimage, ptitle, pheight, pwidth, pcaption) 
{
	var newWindow;
	newWindow 		 = window.open("", ptitle, "copyhistory=no,toolbar=no,scrollbars=no,directories=no,menubar=no,resizable=no,width="+pwidth+",height="+pheight);
	newWindow.document.write("<body bgcolor=#808080 marginwidth='0' marginheight='0' style='margin: 0' >");
	newWindow.document.write("<img src='"+pimage+"' width="+pwidth+" border='0' cellpadding='0' cellspacing='0'><br>");
	newWindow.document.write("<small><small><FONT FACE='Arial Black'><!b>"+pcaption);
	window.close;
	return;
}
//***************************************************************************
