

function showFullImage(image, title){
	imageWindow = window.open(image, 'imgWin', 'width=350, height=350')
	imageWindow.document.title = title;
	imageWindow.focus()
}

