// Hide Email normal
// Paste this script where you want to hide your email
// <script type="text/javascript">writeEmail('info', 'jrweb.net', 'Name')</script>

function writeEmail(eName, eServer, eSub)
{
var emailname = eName;
var emailserver = eServer;
var subject = eSub;
document.write("<a href='mailto:" + emailname + "@" + emailserver + "?subject=Message pour le " + eSub + " provenant du site fox-garden.com'>");
document.write(emailname + "@" + emailserver);
document.write("</a>");
}

// Switch between languages FR to EN or vice versa
// Paste this as your link
// <a href="javascript:goswitchEn();">English</a>
// <a href="javascript:goswitchFr();">Français</a>

function goswitchEn(){
var thisurl = unescape(document.URL);
// alert(thisurl);
var targurl = thisurl.replace('.php','-en.php');
location.href=targurl;
}

function goswitchFr(){
var thisurl = unescape(document.URL);
// alert(thisurl);
var targurl = thisurl.replace('-en.php','.php');
location.href=targurl;
}
