// JavaScript Document
var prevWindow = null ;

function closePhoto() {
	if (prevWindow) prevWindow.close() ;
	prevWindow = null ;
}

function showPhoto(image, name) {
	width = 820 ; height = 660 ;
	
	if(prevWindow != null && ! prevWindow.closed) {
		closePhoto() ;
	} 

	prevWindow = window.open("../showphoto.php?image=" + image, name, "width=" + width +", height=" + (height+20)) ;
	if(prevWindow.focus ) prevWindow.focus();
}



window.onunload = closePhoto ;
