<!--
/*USED TO DYNAMICALLY DETERMINE WHICH PAGE TO REDIRECT TO FROM THE LANGUAGE BUTTONS */
var current = window.location.toString(); 
current = (current.replace("&lang=fr",""));
current = (current.replace("?lang=fr",""));
var postmark = ""; 
if (current.indexOf("?")==-1){ 
	postmark = "?lang=fr";
}
else {
	postmark = "&lang=fr"; 
}
var content = "<a href='" + current +  postmark + "'><img class='alignnone size-full wp-image-798' title='langue' src='http://invitationsculpture.com/swiss.png' alt='flags' width='25' height='25' /></a><a href='" + current + "'><img class='alignnone size-full wp-image-798' title='language' src='http://invitationsculpture.com/british.png' alt='flags' width='25' height='25' /></a><br>"; 
document.getElementById('flags').innerHTML = content; //creates flag buttons

//-->