function setLang(lang) {

	createCookie("lang",lang,365);
	
	var p1 = document.getElementById("p1");
	var p2 = document.getElementById("p2");
	
	var pCaption = document.getElementById("pCaption");
	
	if(lang == "FR") {
	   	p1.innerHTML = "Cette maison, en pierres traditionnelles de construction r&eacute;cente, " +
	   				   "offre des services de chambre/table d'h&ocirc;te dans un confort des plus modernes.";
					  
	   	p2.innerHTML = "Cette est construite dans un jardin entour&eacute; de vieux murs avec dans un coin un petit " +
					   "abri du 17ieme siecle. Vous pouvez voir le jardin et la cuisine aujourdhui " +
					   "<a href='LPR-webcam.htm'>ici</a>";

		pCaption.innerHTML = "La maison";

	}
	else {
		p1.innerHTML="La Porte Rouge is a recently built house offering chambre and table d'h&ocirc;te services " +
					  "in comfortable accommodation with all modern conveniences. " +
					  "The house is built in an ancient walled garden with a tiny 17th century " +
					  "cottage in one corner. Click <a href='LPR-webcam.htm'>here</a> " +
					  "to see the garden and the kitchen today.";
					 
		p2.innerHTML="&nbsp;";
		
		pCaption.innerHTML = "The house";
	}
}
