var bigPictureWindow = 0;
function bigPicture(passedImage) {
	var imagePath = "/images/big/big.php?image=";
	var fullFilePath = imagePath + passedImage;
	//alert(fullFilePath);
	if (bigPictureWindow) {
		if(!bigPictureWindow.closed) bigPictureWindow.close();
	}
	bigPictureWindow = window.open(fullFilePath, 'bigPictureWindow', 'resizable=no,width=470,height=370');
}

function bigFlipPicture(passedImage) {
	var imagePath = "/images/big/big.php?image=";
	var fullFilePath = imagePath + passedImage;
	//alert(fullFilePath);
	if (bigPictureWindow) {
		if(!bigPictureWindow.closed) bigPictureWindow.close();
	}
	bigPictureWindow = window.open(fullFilePath, 'bigPictureWindow', 'resizable=no,width=370,height=470');
}

