// JavaScript Document
var edress = 'tony_at_bywild_dot_com';
function get_edress(){
var re= /_at_/gi;
edress = edress.replace(re,'@');
var re= /_dot_/gi;
edress = edress.replace(re,'.');
var the_link="mai" + "lto" +":"+edress+"?subject=By%20Wild%20Website%20Design&body=Thank%20you%20for%20contacting%20us.%0D%0APlease%20provide%20as%20much%20information%20as%20possible%20so%20I%20can%20deal%20with%20your%20enquiry%20efficiently." ;
window.location=the_link;

}
