function launchWindow(url) {
	myLightWindow.activateWindow({
		href: url, 
		iframeEmbed: "true",
		width: 524,
		height: 424
	});
}

function switchTab(section) {
	switch(section) {
		case "facebook":
			$('all-american-tabs').style.backgroundPosition = "-10px -40px";
			break;
		case "twitter":
			$('all-american-tabs').style.backgroundPosition = "-10px -80px";
			break;
		default:
			$('all-american-tabs').style.backgroundPosition = "-10px 0";
			break;
	}
	$$('.all-american-content').each( function(s) {
		s.style.display = "none";
	});
	$('all-american-'+section).style.display = "block";
}

function validatePhotoForm(form) {
	var isValid = true;
	$$(form+' input').each(function(s) {
		if(s.type == "text") {
			if(s.value == "") {
				$('response').update('Please fill-in all required fields and resubmit. Gracias.');
				isValid = false;
			}
			if(s.name == "EmailAddress") {
				if(-1 == s.value.indexOf("@")) {
					$('response').update('Please enter a valid email address');
					isValid = false;
				}
				if(-1 == s.value.indexOf(".")) {
					$('response').update('Please enter a valid email address');
					isValid = false;
				}
			}
		}
	});
	if(isValid == true) {
		$('submit-btn').style.display = "none";
	} else {
		$('aat_title').src = site_root+"images/allamerican/txt_sorry.gif";
	}
	return isValid;
}
function findLocation(form) {
	var url = form.action;
	url += "?"+form.place.name+"="+form.place.value;
	window.open(url,'mywindow','width=950,height=800,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
	return false;
}