function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}
function getLanguage(){
	var x = readCookie('luplanguage');
	if (x) {
		if(x=="Spanish")spanish();
		if(x=="French")french();
		//if(x=="English")document.write("English");
	}
}
function x(ele,wd){
	document.getElementById(ele).innerHTML=wd;
}

function spanish(){
	x('hotel1', 'Inicio');
	x('hotel2', 'Hoteles de Luperon');
}

function french(){
	x("hotel1","Maison");
	x("hotel2","Hotels de Luperon");
}

