function popupImage(image, width, height)
{
	var location = "/large/" + image;
	width = width+20;
	height=height+20;
	var imageWindow = window.open(location,'popupimage',config='width='+width+',height='+height+',resizable=yes,scrollbars=no,location=no,toolbar=no,menubar=no');
	imageWindow.focus();
	return false;
}