function GetCookie(NameOfCookie)
	{var cname=NameOfCookie+"=";
	var dc=document.cookie;
	if (dc.length>0)
		{begin=dc.indexOf(cname);
		if (begin!=-1)
			{begin+=cname.length;
			end=dc.indexOf(";", begin);
			if (end==-1)
				end=dc.length;
			return unescape(dc.substring(begin, end));};}
	return null;}
function SetCookie(NameOfCookie, ValueOfCookie, expires, path, domain, secure)
	{document.cookie=NameOfCookie+"="+escape(ValueOfCookie)+
	((expires==null)?"":";expires="+expires.toGMTString())+((path==null)?"":";path="+path)+
	((domain==null)?"":";domain="+domain) +
	((secure==null)?"":";secure");}
if (GetCookie('SITELANGUAGE')==null)
	{SetCookie('SITELANGUAGE',DefaultLanguage);}
if (GetCookie('SITELANGUAGE')!=DefaultLanguage)
	{SetCookie('SITELANGUAGE',DefaultLanguage);}