//Shop Finder
function leapto(form) {
var myindex=form.dest.selectedIndex;
location.href=(form.dest.options[myindex].value);
}
//Forms
function validate()
{
x=document.ContactForm;
at=x.required_email.value.indexOf("@");
if (at == -1)
	{
	alert("Please enter a valid e-mail address.");
	return false;
	}
}

