<!-- 
function POPUP1() {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (100 + 50); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (240 + 25); //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open("can_patrolcar01.html","clipconsole","status=no,height=350,width=410,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
	win2.focus();
}
function POPUP2() {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (250 + 15); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (250 + 10); //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open("photos/CAN_holiday_04/can_pic01.html","clipconsole","status=no,width=500,height=360,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
	win2.focus();
}
function POPUP3() {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (250 + 15); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (250 + 10); //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open("photos/volunteer_050108/can_pic01.html","clipconsole","status=no,width=500,height=360,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
	win2.focus();
}
//-->