function enlarge(image, x, y)
{
	var largeimage = image.src.replace('small', 'large').replace('.gif', '.jpg');

	window.open(largeimage, 'largeimage', "width=" + x + ",height=" + y
		+ ",status=no,location=no,toolbar=no,menubar=no,scrolling=no,left=160,"
		+ "top=185,resizable=yes");

	return false;
}