
function imageView (titleName, photoName, windowAttribs) {
	newWin = window.open(photoName, "newWindow", windowAttribs);
	newWin.focus();
}

