/**
 * @author Steve jobs
 */

function setLanguage(language,urlActual)
{
	var today = new Date();
	today.setTime( today.getTime() );
	var expires = 365 * 1000 * 60 * 60 * 24; // Lasts one year
	var expiresDate = new Date( today.getTime() + (expires) );
	// Also tossing the referrer in here
	//var cookie_val="refferer=" + document.referrer + ";language=" + language + ";expires=" + expiresDate;

	//alert(urlActual)  
	//url = location;
	//alert(url)
	//urlnew = url.replace("/es/?", "/?");
	//alert(urlnew)
	//document.cookie = cookie_val;
	//alert(cookie_val);
	if(language == "spanish")
		window.location = window.location.href = "http://www.hotellereve.com/es/?"+urlActual;
	else
		window.location = window.location.href;
	//alert(document.referrer);
	//window.location = window.location.href
	/*if(language == "spanish")
	window.location.href = "http://www.hotellereve.com/es/";
	else
	window.location = window.location.href;*/
	
}

