function domail(){
  document.write('<a href="mailto:stay&#64;greenvillearms.com">stay&#64;greenvillearms.com</a>');
}

if (window.self.location!=window.top.location){window.top.location=window.self.location}


function validate(theform){
	if (theform.name.value == ""){          alert("Please include your name.");return false;}    
  else if (theform.email.value == ""){          alert("Please include your email address.");return false;}  
  else if (!((theform.email.value.indexOf(".") > 2) && (theform.email.value.indexOf("@") > 0))){alert("Please include a valid email address.");return false;}  
  else if (theform.address.value == ""){       alert("Please include your street address.");return false;}    
  else if (theform.city.value == ""){          alert("Please include your city.");return false;}    
  else if (theform.stateprovince.value == ""){ alert("Please include your state or province.");return false;}    
  else if (theform.zip.value == ""){           alert("Please include your zip or postalcode.");return false;}  
  else{return true;}  
}