<!--//Display popup photos
function displayPopup(url) {
	var winl = (screen.width - 450) / 2;
	var wint = (screen.height - 460) / 2;
	winprops = 'height=460,width=450,top='+wint+',left='+winl+',scrollbars=no,resizable'
	win = window.open(url, 'Photos', winprops)
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus(); 
		}
}
//-->
