var popWindow;
function PopWindow(photo,width,height)
{
	if(popWindow)
	{
		popWindow.close();
	}
	popWindow = window.open("photo.php?photo=" + photo,"popWindow","status,,top=50,left=50,width=" + width + ",height=" + height);
	popWindow.focus();
}
function closeWindow()
{
	if(popWindow)
	{
			popWindow.close();
	}
}