// Javascript Functions Library for The Flower Garden; 4/28/2006; Ver. 1.0


// Flower Garden Site Javascript

	// Used to send emails which cannot be harvested by spiders
   function sendMail( name, company, domain ) {
      locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
      window.location.replace(locationstring);
   }
