/* Beginning of Page Scripts
 *------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
 

//change the cookie value
var lang
 
function changetolang(lang) {
 var largeExpDate = new Date ();
     setCookie('whatsthelanguage',lang,365);
}
 
function setCookie(NameOfCookie, value, expiredays) {
var ExpireDate = new Date();
ExpireDate.setTime(ExpireDate.getTime() + (expiredays * 24 * 3600 * 1000));
document.cookie = NameOfCookie + "=" + escape(value) + ((expiredays == null) ? "" : "; expires=" + ExpireDate.toGMTString());
}
 
 
 

/* END of Scripts
 *------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
