function popImage(imagePath, imageWidth, imageHeight)
{
	newHeight = (imageHeight * 1) + 50;
	newWidth = (imageWidth * 1) + 20;
	window.open("showimage.php?source="+imagePath,"Image","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height="+newHeight+",width="+newWidth);
}
