function popPhoto(url, width, height)
{
	if (window.open)
	{
		if (!width) width = 600;
		if (!height) height = 480;

		photoPop = window.open(url, '', 'resizable=yes,scrollbars=yes,menu=no,location=no,width=' + width + ',height=' + height);
		photoPop.focus();
		return false;
	}
	else return true;
}
