﻿/* CAI Scripts */

function getPhoto(e) {
	pv = 'photo.php?photo=' + e;
	var pwin = window.open(pv,'photo','width=350,height=300,scrollbars=no,menubar=no,toolbar=no');
	
	if(!pwin) {
		alert("Popup blocking software may be preventing this photo from opening. Please allow access so you can view this photo.");
	} else {
		pwin.focus();
	}
}	