<!--
function check(f) {
	if (f.email.value.length < 1) {
	  alert("Please enter your email address.");
	  f.email.focus();
	  return(false);
	}
	else {
	  var reg = new RegExp("^([-a-zA-Z0-9_\.]+@[-a-zA-Z0-9]+(\.[-a-zA-Z0-9]+)+)*$","g");
	  if (!reg.test(f.email.value)) {
		alert("Please enter a properly-formatted email address.");
		f.email.focus();
		return(false);
		}
	}
}

function toggle(new_id) {
	// OPEN POPUP IF CLOSED
	if (document.getElementById('popupWrapper').style.display == "none") {
		document.getElementById('popupWrapper').style.display = "";
	}
	
	// CLOSE ALL IMG DIVS EXCEPT NEW ONE
	var thedivs = document.getElementsByTagName("div");
	for(var x=0; x<thedivs.length; x++) {
		name = thedivs[x].getAttribute("name");
		if (name == 'popimage') {
			if (thedivs[x].id == new_id) {
				thedivs[x].style.display = '';
			} else {
				thedivs[x].style.display = 'none';
			}
		}
	}
	
}

function closePopup() {
		document.getElementById('popupWrapper').style.display = "none";
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function openGallery(id) {
	var newWin = window.open('gallery_popup.php?id='+id,'','resizable=yes,scrollbars=no');
}
function openPeople(id) {
	var newWin = window.open('people_popup.php?id='+id,'','resizable=yes,scrollbars=no');
}
-->
