/* CAF Ohio Scripts */

function copyright() {
	copyright=new Date();
	update=copyright.getFullYear();
	document.write("Copyright &copy; "+ update + " CAF Ohio. All Rights Reserved.");
}

function ShowPhoto(e) {
	
	photo = 'images/gallery/plane_' + e + '.jpg'
	var win = window.open(photo,'Gallery','width=515,height=395,scrollbars=no,menubar=no,titlebar=no');
	
	if(!win) {
		alert('You may have a popup blocker which is preventing you from viewing this photo. Please allow popups from this site to view this photo.');		
	} else {
		win.focus();	
	}
	
}