var photoWindow;

function openPhotoViewer(productID){
	if (photoWindow != null){
		photoWindow.close();	
	}
	photoWindow = window.open("photo_viewer.php?ProductID=" + productID, "PhotoViewer", "width=660, height=560, top = 40, left = 100");	
}