
//Nav Bar MouseOver (do not change)
function rollOn(imgName, theImg) {
        if (document.images) { document [imgName].src = theImg; }
}
//Nav Bar MouseOut (do not change)
function rollOff(imgName, theImg) {
        if (document.images) { document [imgName].src = theImg; }
}




function validForm() {

			
	if (document.newsletter.signer_email.value == "") {
	alert("You didn't enter your email address!")
	return false
} 
	if (document.newsletter.signer_email.value == "enter email address") {
	alert("You didn't enter your email address!")
	return false
} 
	
alert("Thank you!  You will receive an official confirmation shortly.");
return true

}	

function validGuest() {

			
	if (document.contact3.name.value == "") {
	alert("You didn't include your name!")
	return false
} 
	if (document.contact3.comments.value == "") {
	alert("You didn't include your message!")
	return false
}

alert("Your comment has been sent!  If approved, it will be posted shortly.")
return true

}	

function validForm2() {

			
	if (document.contact2.Name.value == "") {
	alert("You didn't include your name!")
	return false
} 
	if (document.contact2.Email.value == "") {
	alert("You didn't include your email address!")
	return false
}
	if (document.contact2.Message.value == "") {
	alert("You didn't include your message!")
	return false
}

alert("Your message has been delivered!")
return true

}	


function newWindow(gallery)
        {
                var winoptions = ",directories=no,status=no,scrollbars=no,resize=no,menubar=no";
               galleryWindow = window.open(gallery, 'gallerywindow', 'toolbar=no,width=560,height=489' + winoptions);
                if (navigator.appName == "Netscape")
                {
                galleryWindow.focus();
                }
        }