
function photo(image){
var winStyle = "scrollbars=yes,resizable=yes,width=800,height=620";
WindowObject = window.open('../../window.html?'+image,"window",winStyle);

	if( WindowObject && !WindowObject.closed ){
		WindowObject.focus();
	}
}
