// ----- Popup windows
//How do I get involved? contact information
function myPopup2(filename) {
	window.open(filename, "windowA","height=250,width=620,resizable=1");
}
//rv.jpg, bridge_constr.jpg
function myPopup3(filename) {
	window.open(filename, "windowA","height=450,width=500,resizable=1");
}
//maintenance.jpg, construct.jpg, training.jpg, monitor_site.jpg
function myPopup4(filename) {
	window.open(filename, "windowA","height=470,width=600,resizable=1");
}
//education.jpg
function myPopup5(filename) {
	window.open(filename, "windowA","height=700,width=550,scrollbars=1,resizable=1");
}
//research.jpg
function myPopup6(filename) {
	window.open(filename, "windowA","height=580,width=550,scrollbars=1,resizable=1");
}
//illicit_discharge.jpg
function myPopup7(filename) {
	window.open(filename, "windowA","height=500,width=420,resizable=1");
}




//--------------- used by the tools section located on kids.html

function generalPopup(filename) {
  window.open(filename, "Photographs","height=550,width=500,scrollbars=1,resizable=1");
}